Skip to content

Commit d6245f0

Browse files
committed
fixed #175
1 parent eeac2e7 commit d6245f0

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [unreleased]
99

10+
### Added
11+
12+
-
13+
14+
### Fixes
15+
16+
- fixed #175
17+
1018
## [v0.0.5] - 03 May 2022
1119

1220
### Added

lua/github-theme/plugins/lualine.lua

+3
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,7 @@ lualine.build_lualine_theme = function(c)
4444
}
4545
end
4646

47+
-- Fix for https://github.com/projekt0n/github-nvim-theme/issues/175
48+
vim.cmd('hi! link StatusLine Normal')
49+
4750
return lualine

lua/github-theme/theme.lua

+1
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ theme.setup = function(cfg)
134134
mkdCodeStart = { fg = c.syntax.variable, style = Styles.Bold },
135135
mkdCodeEnd = { fg = c.syntax.variable, style = Styles.Bold },
136136
markdownHeadingDelimiter = { fg = c.syntax.variable, style = Styles.Bold },
137+
markdownTSTextReference = { link = 'Title' },
137138
markdownH1 = { fg = c.syntax.variable, style = Styles.Bold },
138139
markdownH2 = { fg = c.syntax.variable, style = Styles.Bold },
139140
markdownH3 = { fg = c.syntax.variable, style = Styles.Bold },

0 commit comments

Comments
 (0)