From de1bd3a7c48d37f3c7ccecb1980c4009fa4fb791 Mon Sep 17 00:00:00 2001 From: EdenEast Date: Thu, 14 Dec 2023 11:03:40 -0500 Subject: [PATCH] fix(group): WinSeperator defined along side VertSplit (#387) Relates to default colorscheme change in neovim [#26334](https://github.com/neovim/neovim/pull/26334) --- lua/nightfox/group/editor.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lua/nightfox/group/editor.lua b/lua/nightfox/group/editor.lua index d3e4612d..04d32f90 100644 --- a/lua/nightfox/group/editor.lua +++ b/lua/nightfox/group/editor.lua @@ -24,7 +24,8 @@ function M.get(spec, config) -- TermCursor = {}, -- cursor in a focused terminal -- TermCursorNC = {}, -- cursor in an unfocused terminal ErrorMsg = { fg = spec.diag.error }, -- error messages on the command line - VertSplit = { fg = spec.bg0 }, -- the column separating vertically split windows + WinSeperator = { fg = spec.bg0 }, -- the column separating vertically split windows + VertSplit = { link = "WinSeperator" }, -- the column separating vertically split windows Folded = { fg = spec.fg3, bg = spec.bg2 }, -- line used for closed folds FoldColumn = { fg = spec.fg3 }, -- 'foldcolumn' SignColumn = { fg = spec.fg3 }, -- column where |signs| are displayed