Fixed transparency issue in SignColumn. (#22)

This commit is contained in:
cgoboncan-ebsi
2021-04-28 08:21:57 -05:00
committed by GitHub
parent 54e1db2ec1
commit d8913bad1e

View File

@@ -35,7 +35,7 @@ function M.setup(config)
VertSplit = { fg = c.border }, -- 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'
SignColumn = { bg = c.bg, fg = c.fg_gutter }, -- column where |signs| are displayed
SignColumn = { bg = config.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 }, -- |:substitute| replacement text highlighting
LineNr = { fg = c.fg_gutter }, -- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set.