diff options
| author | Ellison Leão <ellisonleao@gmail.com> | 2025-03-29 19:32:04 -0300 |
|---|---|---|
| committer | Ellison Leão <ellisonleao@gmail.com> | 2025-03-29 19:32:04 -0300 |
| commit | c74e6e523c4827b67af2cb02b636e22dc35fdf70 (patch) | |
| tree | d8a70784cb618241c96c6368e8617da544c9495c /lua | |
| parent | c6f42890551b4827253387e93b035568826a9cb7 (diff) | |
| download | gruvbox-c74e6e523c4827b67af2cb02b636e22dc35fdf70.tar.gz gruvbox-c74e6e523c4827b67af2cb02b636e22dc35fdf70.tar.xz | |
fix statusline highlights. Resolve #390
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/gruvbox.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/gruvbox.lua b/lua/gruvbox.lua index 1f065c3..5fd237d 100644 --- a/lua/gruvbox.lua +++ b/lua/gruvbox.lua @@ -306,8 +306,8 @@ local function get_groups() CurSearch = { link = "IncSearch" }, QuickFixLine = { link = "GruvboxPurple" }, 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 }, + StatusLine = { fg = colors.bg1, bg = colors.fg2 }, + StatusLineNC = { fg = colors.fg4, bg = colors.bg1 }, WinBar = { fg = colors.fg4, bg = colors.bg0 }, WinBarNC = { fg = colors.fg3, bg = colors.bg1 }, WinSeparator = config.transparent_mode and { fg = colors.bg3, bg = nil } or { fg = colors.bg3, bg = colors.bg0 }, |
