Skip to content

Commit

Permalink
Merge pull request #117 from ful1e5/main
Browse files Browse the repository at this point in the history
fix: todo highlight foreground color #115
  • Loading branch information
ful1e5 committed Oct 18, 2021
2 parents 9d07e43 + f722a42 commit 910f80d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- enhance: inactive statusline
- load colorscheme according to `theme_style` config
- revert 41f844a #113
- todo highlight foreground color fixed #115

## [v0.0.2] - 15 Sep 2021

Expand Down
2 changes: 1 addition & 1 deletion lua/github-theme/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ function M.setup(config)
-- Ignore = { }, -- (preferred) left blank, hidden |hl-Ignore|

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

Expand Down

0 comments on commit 910f80d

Please sign in to comment.