From 48919a8bee9d109a9f0023246fd1d85d2b196053 Mon Sep 17 00:00:00 2001 From: 231tr0n Date: Mon, 16 Sep 2024 15:44:46 +0000 Subject: [PATCH] fix: set win separator highlights --- lua/tokyonight/groups/base.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/tokyonight/groups/base.lua b/lua/tokyonight/groups/base.lua index a8ea6ee7..ef579a7a 100644 --- a/lua/tokyonight/groups/base.lua +++ b/lua/tokyonight/groups/base.lua @@ -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.