Skip to content

Commit

Permalink
fix: set win separator highlights
Browse files Browse the repository at this point in the history
  • Loading branch information
231tr0n committed Sep 16, 2024
1 parent ae4524a commit 48919a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/tokyonight/groups/base.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function M.get(c, opts)
EndOfBuffer = { fg = c.bg }, -- filler lines (~) after the end of the buffer. By default, this is highlighted like |hl-NonText|.
ErrorMsg = { fg = c.error }, -- error messages on the command line
VertSplit = { fg = c.border }, -- the column separating vertically split windows
WinSeparator = { fg = c.border, bold = true }, -- the column separating vertically split windows
WinSeparator = { fg = c.border, bg = opts.transparent and c.none or opts.dim_inactive and c.bg_dark or c.bg, bold = true }, -- the column separating vertically split windows
Folded = { fg = c.blue, bg = c.fg_gutter }, -- line used for closed folds
FoldColumn = { fg = c.comment }, -- 'foldcolumn'
CursorLineFold = { fg = c.orange, bold = true }, -- Like FoldColumn when 'cursorline' or 'relativenumber' is set for the cursor line.
Expand Down

0 comments on commit 48919a8

Please sign in to comment.