fix: fix transparent bg

This commit is contained in:
fiplox 2023-04-08 21:41:57 +02:00
parent ea49398998
commit 94a2cac8c3
1 changed files with 1 additions and 1 deletions

View File

@ -256,7 +256,7 @@ M.setup = function()
DashboardFooter = { fg = c.green, italic = config.italic },
-- normal text and background color
Normal = { fg = c.fg, bg = c.bg },
Normal = config.transparent and { fg = c.fg, bg = 'NONE' } or { fg = c.fg, bg = c.bg },
NormalNC = config.dim_inactive and { fg = c.fg_1, bg = c.bg_1 } or { link = 'Normal' },
SignColumn = { fg = c.fg, bg = c.none },