From d8913bad1ebdc5631756406467268609ff9516b4 Mon Sep 17 00:00:00 2001 From: cgoboncan-ebsi Date: Wed, 28 Apr 2021 08:21:57 -0500 Subject: [PATCH] Fixed transparency issue in SignColumn. (#22) --- 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 bb6e9b4..73484e3 100644 --- a/lua/tokyonight/theme.lua +++ b/lua/tokyonight/theme.lua @@ -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.