From 8fb981e8fea1eab821df988728e10d341dd07b8f Mon Sep 17 00:00:00 2001 From: Michael Chris Lopez Date: Sun, 24 Mar 2024 11:11:28 +0100 Subject: [PATCH 1/2] fix: define WinSeparator first --- lua/zenbones/specs/dark.lua | 4 ++-- lua/zenbones/specs/light.lua | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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". From 7009ede80daaabeaa5dbd3c9567252c7a243c221 Mon Sep 17 00:00:00 2001 From: Michael Chris Lopez Date: Sun, 24 Mar 2024 11:13:39 +0100 Subject: [PATCH 2/2] feat(extras): remove excludes --- zenbones.json | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/zenbones.json b/zenbones.json index 04c0cc0..543ccd3 100644 --- a/zenbones.json +++ b/zenbones.json @@ -14,55 +14,19 @@ }, { "name": "forestbones", - "exclude": [ - "iterm", - "alacritty", - "kitty", - "wezterm", - "tmux", - "windows_terminal", - "foot" - ], "description": "A zenbones variant inspired by Everforest." }, { "name": "nordbones", "background": "dark", - "exclude": [ - "iterm", - "alacritty", - "kitty", - "wezterm", - "tmux", - "windows_terminal", - "foot" - ], "description": "A zenbones variant inspired by Nord." }, { "name": "rosebones", - "exclude": [ - "iterm", - "alacritty", - "kitty", - "wezterm", - "tmux", - "windows_terminal", - "foot" - ], "description": "A zenbones variant inspired by Rosé Pine." }, { "name": "tokyobones", - "exclude": [ - "iterm", - "alacritty", - "kitty", - "wezterm", - "tmux", - "windows_terminal", - "foot" - ], "description": "A zenbones variant inspired by Tokyo Night." }, {