From 3b7c4d50725d9b3df1fee0a3075dcf4e264bd3e1 Mon Sep 17 00:00:00 2001 From: Michael Chris Lopez Date: Mon, 13 Sep 2021 18:38:02 +0800 Subject: [PATCH] more visible VertSplit --- lua/zenbones/init.lua | 2 +- lua/zenflesh/init.lua | 13 ++++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/lua/zenbones/init.lua b/lua/zenbones/init.lua index 1392c23..cfffd1d 100644 --- a/lua/zenbones/init.lua +++ b/lua/zenbones/init.lua @@ -92,7 +92,7 @@ local theme = lush(function() TabLine { StatusLine, gui = "italic" }, -- 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 = PmenuThumb.bg }, -- the column separating vertically split windows + VertSplit { LineNr }, -- the column separating vertically split windows Visual { bg = c.stone.li(84) }, -- Visual mode selection -- VisualNOS { }, -- Visual mode selection when vim is "Not Owning the Selection". diff --git a/lua/zenflesh/init.lua b/lua/zenflesh/init.lua index 9d5ee2c..440cc04 100644 --- a/lua/zenflesh/init.lua +++ b/lua/zenflesh/init.lua @@ -93,7 +93,7 @@ local theme = lush(function() TabLine { StatusLine, gui = "italic" }, -- 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 = PmenuSbar.bg }, -- the column separating vertically split windows + VertSplit { LineNr }, -- the column separating vertically split windows Visual { bg = c.stone.sa(24).da(68) }, -- Visual mode selection -- VisualNOS { }, -- Visual mode selection when vim is "Not Owning the Selection". @@ -370,6 +370,17 @@ if vim.g.zenflesh_lighten_noncurrent_window then ) end +if vim.g.zenflesh_solid_vert_split then + table.insert( + specs, + lush(function() + return { + VertSplit { bg = theme.StatusLineNC.bg, fg = theme.LineNr.fg }, -- the column separating vertically split windows + } + end) + ) +end + return lush.merge(specs) -- vi:nowrap