Skip to content

Commit

Permalink
Improve listchars and rendered whitespace
Browse files Browse the repository at this point in the history
Make NonText blue and Whitespace foreground gray so that it looks a bit
more like in VS Code Dark+ color theme.

Closes LunarVim#1
  • Loading branch information
bkircher committed Apr 17, 2022
1 parent 29d2fe5 commit 9e4ebc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/darkplus/highlights.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ local highlights = {
FoldColumn = {fg = C.accent, bg = C.alt_bg, },
LineNr = {fg = C.gray, },
FloatBoder = {fg = C.gray, bg = C.alt_bg, },
Whitespace = {fg = C.bg, },
Whitespace = {fg = C.gray, },
VertSplit = {fg = C.bg, bg = C.gray, },
CursorLine = {bg = C.dark, },
CursorColumn = {bg = C.dark, },
Expand Down Expand Up @@ -53,7 +53,7 @@ local highlights = {
MoreMsg = {fg = C.orange, },
Question = {fg = C.orange, },
EndOfBuffer = {fg = C.bg, },
NonText = {fg = C.bg, },
NonText = {fg = C.blue, style = "bold", },
Variable = {fg = C.light_blue, },
String = {fg = C.orange, },
Character = {fg = C.orange, },
Expand Down

0 comments on commit 9e4ebc5

Please sign in to comment.