diff options
| author | WuerfelDev <WuerfelDev@users.noreply.github.com> | 2023-02-27 02:09:17 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-26 22:09:17 -0300 |
| commit | 3e31f9ab01fed42ebac75738c681daacb8c82bff (patch) | |
| tree | 59ec7d9a6ad8b3bc891dc7bb2d14ea011afe4f10 /lua | |
| parent | 73f009df5ed929a853244c413bb52c1d02c117ce (diff) | |
| download | gruvbox-3e31f9ab01fed42ebac75738c681daacb8c82bff.tar.gz gruvbox-3e31f9ab01fed42ebac75738c681daacb8c82bff.tar.xz | |
fix transparent background on window seperator (#209)
* fix transparent background on window splits
* VertSplit was depreached for WinSeparator
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/gruvbox/groups.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/gruvbox/groups.lua b/lua/gruvbox/groups.lua index 02b59e8..97cd782 100644 --- a/lua/gruvbox/groups.lua +++ b/lua/gruvbox/groups.lua @@ -98,7 +98,7 @@ M.setup = function() 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 }, + WinSeparator = config.transparent_mode and { fg = colors.bg3, bg = nil } or { fg = colors.bg3, bg = colors.bg0 }, WildMenu = { fg = colors.blue, bg = colors.bg2, bold = config.bold }, Directory = { link = "GruvboxBlueBold" }, Title = { link = "GruvboxGreenBold" }, |
