feat: apply transparent to FoldColumn (#221)

Apply `transparent` option also to `FoldColumn`
This commit is contained in:
Jan Christoph Ebersbach
2022-09-24 16:54:44 +02:00
committed by GitHub
parent 6983c90dc3
commit 81f0db1bd0

View File

@@ -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