Skip to content

Commit 910f80d

Browse files
authored
Merge pull request #117 from ful1e5/main
fix: todo highlight foreground color #115
2 parents 9d07e43 + f722a42 commit 910f80d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4242
- enhance: inactive statusline
4343
- load colorscheme according to `theme_style` config
4444
- revert 41f844a #113
45+
- todo highlight foreground color fixed #115
4546

4647
## [v0.0.2] - 15 Sep 2021
4748

lua/github-theme/theme.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ function M.setup(config)
127127
-- Ignore = { }, -- (preferred) left blank, hidden |hl-Ignore|
128128

129129
Error = {fg = c.error}, -- (preferred) any erroneous construct
130-
Todo = {bg = c.yellow, fg = c.none}, -- (preferred) anything that needs extra attention; mostly the keywords TODO FIXME and XXX
130+
Todo = {bg = c.yellow, fg = c.bg}, -- (preferred) anything that needs extra attention; mostly the keywords TODO FIXME and XXX
131131
qfLineNr = {fg = c.line_nr},
132132
qfFileName = {fg = c.blue},
133133

0 commit comments

Comments
 (0)