From 66345d04b79d10fefd8cc2719859f486c2d347c4 Mon Sep 17 00:00:00 2001 From: Christopher Hoelter Date: Sat, 2 Sep 2023 14:29:06 -0500 Subject: [PATCH] Reverse the search highlight group to persist when selected in visual mode. --- lua/nord/groups.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/nord/groups.lua b/lua/nord/groups.lua index a6cc599..a103402 100644 --- a/lua/nord/groups.lua +++ b/lua/nord/groups.lua @@ -98,7 +98,7 @@ M.setup = function() WildMenu = { fg = colors.ice_blue_8, bg = colors.darker_night_1 }, -- search IncSearch = { fg = colors.lightest_snow_6, bg = colors.ocean_blue_10, underline = config.underline }, - Search = { fg = colors.darker_night_1, bg = colors.ice_blue_8 }, + Search = { reverse = true, bg = colors.darker_night_1, fg = colors.ice_blue_8 }, -- tabs TabLine = { fg = colors.snow_4, bg = colors.darker_night_1 }, TabLineFill = { fg = colors.snow_4, bg = colors.darker_night_1 },