mirror of
https://github.com/pnx/dotfiles
synced 2026-06-18 20:10:03 +02:00
nvim/lua/user/plugins/ui/colorscheme.lua: fix indent lines and whitespace highlight
This commit is contained in:
parent
fad0842b76
commit
0ddd0309ca
1 changed files with 5 additions and 1 deletions
|
|
@ -25,7 +25,7 @@ local custom_highlights = function(colors)
|
||||||
WhichKeyFloat = { link = "Pmenu" },
|
WhichKeyFloat = { link = "Pmenu" },
|
||||||
|
|
||||||
-- indent lines
|
-- indent lines
|
||||||
IblScope = { fg = colors.surface0 },
|
IblIndent = { link = "NonText" },
|
||||||
|
|
||||||
-- Search matches
|
-- Search matches
|
||||||
IncSearch = { bg = colors.yellow },
|
IncSearch = { bg = colors.yellow },
|
||||||
|
|
@ -161,6 +161,10 @@ local custom_highlights = function(colors)
|
||||||
TodoCommentsHint = { fg = colors.sapphire },
|
TodoCommentsHint = { fg = colors.sapphire },
|
||||||
TodoCommentsTest = { fg = colors.pink },
|
TodoCommentsTest = { fg = colors.pink },
|
||||||
|
|
||||||
|
-- Text
|
||||||
|
NonText = { fg = colors.surface0 },
|
||||||
|
Whitespace = { link = "NonText" },
|
||||||
|
|
||||||
-- Syntax
|
-- Syntax
|
||||||
PreProc = { fg = colors.mauve },
|
PreProc = { fg = colors.mauve },
|
||||||
Operator = { fg = colors.flamingo },
|
Operator = { fg = colors.flamingo },
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue