From 81f0db1bd0b7f4eb8eb9e81c4b4f12b878cefb10 Mon Sep 17 00:00:00 2001 From: Jan Christoph Ebersbach Date: Sat, 24 Sep 2022 16:54:44 +0200 Subject: [PATCH] feat: apply transparent to FoldColumn (#221) Apply `transparent` option also to `FoldColumn` --- lua/tokyonight/theme.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/tokyonight/theme.lua b/lua/tokyonight/theme.lua index 1504f53..4bfd3ef 100644 --- a/lua/tokyonight/theme.lua +++ b/lua/tokyonight/theme.lua @@ -47,7 +47,7 @@ function M.setup() VertSplit = { fg = c.border }, -- the column separating vertically split windows WinSeparator = { fg = c.border, bold = true }, -- the column separating vertically split windows Folded = { fg = c.blue, bg = c.fg_gutter }, -- line used for closed folds - FoldColumn = { bg = c.bg, fg = c.comment }, -- 'foldcolumn' + FoldColumn = { bg = options.transparent and c.none or c.bg, fg = c.comment }, -- 'foldcolumn' SignColumn = { bg = options.transparent and c.none or c.bg, fg = c.fg_gutter }, -- column where |signs| are displayed SignColumnSB = { bg = c.bg_sidebar, fg = c.fg_gutter }, -- column where |signs| are displayed Substitute = { bg = c.red, fg = c.black }, -- |:substitute| replacement text highlighting