From ff138f3b99459560b9abb74419f26cf6b35912c1 Mon Sep 17 00:00:00 2001 From: fiplox Date: Mon, 20 Mar 2023 20:53:01 +0100 Subject: [PATCH] feat: change search highlight to brown fg --- lua/neogruber/theme.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/neogruber/theme.lua b/lua/neogruber/theme.lua index 189cf58..2da5b9c 100644 --- a/lua/neogruber/theme.lua +++ b/lua/neogruber/theme.lua @@ -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 },