Skip to content

Commit

Permalink
fix(group): WinSeperator defined along side VertSplit (#387)
Browse files Browse the repository at this point in the history
Relates to default colorscheme change in neovim [#26334](neovim/neovim#26334)
  • Loading branch information
EdenEast committed Dec 14, 2023
1 parent eb82712 commit de1bd3a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lua/nightfox/group/editor.lua
Expand Up @@ -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
Expand Down

0 comments on commit de1bd3a

Please sign in to comment.