feat: apply transparent to FoldColumn (#221)
Apply `transparent` option also to `FoldColumn`
This commit is contained in:
committed by
GitHub
parent
6983c90dc3
commit
81f0db1bd0
@@ -47,7 +47,7 @@ function M.setup()
|
|||||||
VertSplit = { fg = c.border }, -- the column separating vertically split windows
|
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, bold = true }, -- the column separating vertically split windows
|
||||||
Folded = { fg = c.blue, bg = c.fg_gutter }, -- line used for closed folds
|
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
|
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
|
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
|
Substitute = { bg = c.red, fg = c.black }, -- |:substitute| replacement text highlighting
|
||||||
|
|||||||
Reference in New Issue
Block a user