feat: change search highlight to brown fg

This commit is contained in:
fiplox 2023-03-20 20:53:01 +01:00
parent be2c3f3748
commit ff138f3b99
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ function theme.highlights(c, config)
-- Line numbers for quickfix lists
qfLineNr = { fg = c.yellow },
-- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out.
Search = { fg = c.fg2, bg = c.bg4, style = 'bold' },
Search = { fg = c.brown, bg = c.none, style = 'bold' },
-- Unprintable characters: text displayed differently from what it really is.
-- But not 'listchars' whitespace. |hl-Whitespace|
SpecialKey = { fg = c.bg6 },