diff --git a/lua/zenbones/specs/dark.lua b/lua/zenbones/specs/dark.lua index 8fbef21..ffc940d 100644 --- a/lua/zenbones/specs/dark.lua +++ b/lua/zenbones/specs/dark.lua @@ -91,8 +91,8 @@ local function generate(p, opt) TabLine { StatusLine }, -- tab pages line, not active tab page label TabLineFill { StatusLineNC }, -- tab pages line, where there are no labels TabLineSel { gui = "bold" }, -- tab pages line, active tab page label - VertSplit { fg = LineNr.fg, bg = opt.solid_vert_split and StatusLineNC.bg or "NONE" }, -- the column separating vertically split windows - WinSeparator { VertSplit }, + WinSeparator { fg = LineNr.fg, bg = opt.solid_vert_split and StatusLineNC.bg or "NONE" }, + VertSplit { WinSeparator }, Visual { bg = p.fg.de(18).lightness(p1.bg.l + 18) }, -- Visual mode selection -- VisualNOS { }, -- Visual mode selection when vim is "Not Owning the Selection". diff --git a/lua/zenbones/specs/light.lua b/lua/zenbones/specs/light.lua index e054cdb..531b8f7 100644 --- a/lua/zenbones/specs/light.lua +++ b/lua/zenbones/specs/light.lua @@ -91,8 +91,8 @@ local function generate(p, opt) TabLine { StatusLine }, -- tab pages line, not active tab page label TabLineFill { StatusLineNC }, -- tab pages line, where there are no labels TabLineSel { gui = "bold" }, -- tab pages line, active tab page label - VertSplit { fg = LineNr.fg, bg = opt.solid_vert_split and StatusLineNC.bg or "NONE" }, -- the column separating vertically split windows - WinSeparator { VertSplit }, + WinSeparator { fg = LineNr.fg, bg = opt.solid_vert_split and StatusLineNC.bg or "NONE" }, + VertSplit { WinSeparator }, Visual { bg = p.fg.lightness(p1.bg.l - 8) }, -- Visual mode selection -- VisualNOS { }, -- Visual mode selection when vim is "Not Owning the Selection".