From 3e31f9ab01fed42ebac75738c681daacb8c82bff Mon Sep 17 00:00:00 2001 From: WuerfelDev Date: Mon, 27 Feb 2023 02:09:17 +0100 Subject: fix transparent background on window seperator (#209) * fix transparent background on window splits * VertSplit was depreached for WinSeparator --- lua/gruvbox/groups.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" }, -- cgit v1.2.3