Skip to content

Commit

Permalink
fix(group): Fix typo from WinSeperator to WinSeparator
Browse files Browse the repository at this point in the history
Fixes: #387
  • Loading branch information
EdenEast committed Dec 21, 2023
1 parent 5a77463 commit 3f98459
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/nightfox/group/editor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +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
WinSeperator = { fg = spec.bg0 }, -- the column separating vertically split windows
VertSplit = { link = "WinSeperator" }, -- the column separating vertically split windows
WinSeparator = { fg = spec.bg0 }, -- the column separating vertically split windows
VertSplit = { link = "WinSeparator" }, -- 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 3f98459

Please sign in to comment.