aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxime Brunet <max@brnt.mx>2022-11-10 05:36:48 -0800
committerGitHub <noreply@github.com>2022-11-10 10:36:48 -0300
commitd659822c68be38f10725185980dec81520f5e3c7 (patch)
treebf16fd54c0ce2627de62e06fd792c89d0c5ef774
parent9002dc7a717d38b7bbe212febe6370fd7d047308 (diff)
downloadgruvbox-d659822c68be38f10725185980dec81520f5e3c7.tar.gz
gruvbox-d659822c68be38f10725185980dec81520f5e3c7.tar.xz
feat: add Winbar highlight groups (#174)
-rw-r--r--lua/gruvbox/groups.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/gruvbox/groups.lua b/lua/gruvbox/groups.lua
index 05665d9..6bc3130 100644
--- a/lua/gruvbox/groups.lua
+++ b/lua/gruvbox/groups.lua
@@ -164,6 +164,8 @@ groups.setup = function()
Underlined = { fg = colors.blue, underline = config.underline },
StatusLine = { fg = colors.bg2, bg = colors.fg1, reverse = config.inverse },
StatusLineNC = { fg = colors.bg1, bg = colors.fg4, reverse = config.inverse },
+ WinBar = { fg = colors.fg4, bg = colors.bg0 },
+ WinBarNC = { fg = colors.fg3, bg = colors.bg1 },
VertSplit = { fg = colors.bg3, bg = colors.bg0 },
WildMenu = { fg = colors.blue, bg = colors.bg2, bold = config.bold },
Directory = { link = "GruvboxGreenBold" },