Fixed transparency issue in SignColumn. (#22)
This commit is contained in:
@@ -35,7 +35,7 @@ function M.setup(config)
|
|||||||
VertSplit = { fg = c.border }, -- the column separating vertically split windows
|
VertSplit = { fg = c.border }, -- 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 = 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
|
SignColumnSB = { bg = c.bg_sidebar, fg = c.fg_gutter }, -- column where |signs| are displayed
|
||||||
Substitute = { bg = c.red }, -- |:substitute| replacement text highlighting
|
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.
|
LineNr = { fg = c.fg_gutter }, -- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set.
|
||||||
|
|||||||
Reference in New Issue
Block a user