diff options
| author | Oskar Grunning <oskargrunning@gmail.com> | 2022-12-06 11:54:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-06 07:54:25 -0300 |
| commit | b139fa542bc3dd7a84bd50de41ae7fbef77716e4 (patch) | |
| tree | aac65e9769afc31a45800d9eafb127982e596ad7 | |
| parent | 9ec1d44d8485e9d4f615bdc41e164169564e9f89 (diff) | |
| download | gruvbox-b139fa542bc3dd7a84bd50de41ae7fbef77716e4.tar.gz gruvbox-b139fa542bc3dd7a84bd50de41ae7fbef77716e4.tar.xz | |
fix: add cursearch highlight (#188)
| -rw-r--r-- | lua/gruvbox/groups.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/gruvbox/groups.lua b/lua/gruvbox/groups.lua index 113c4d1..e1abaaf 100644 --- a/lua/gruvbox/groups.lua +++ b/lua/gruvbox/groups.lua @@ -160,6 +160,7 @@ groups.setup = function() VisualNOS = { link = "Visual" }, Search = { fg = colors.yellow, bg = colors.bg0, reverse = config.inverse }, IncSearch = { fg = colors.orange, bg = colors.bg0, reverse = config.inverse }, + CurSearch = { link = "IncSeach" }, QuickFixLine = { fg = colors.bg0, bg = colors.yellow, bold = config.bold }, Underlined = { fg = colors.blue, underline = config.underline }, StatusLine = { fg = colors.bg2, bg = colors.fg1, reverse = config.inverse }, |
