fix: set bg color to none inactive lualine when set to transparent (#138)

this was previously set to to the default bg color and there wasn't
really transparent
This commit is contained in:
Hass
2022-09-02 07:13:21 +01:00
committed by GitHub
parent 0786a2acd8
commit 77763c7918

View File

@@ -548,7 +548,7 @@ function M.setup(config)
theme.defer = {}
if config.hideInactiveStatusline then
local inactive = { style = "underline", bg = c.bg, fg = c.bg, sp = c.border }
local inactive = { style = "underline", bg = c.none, fg = c.bg, sp = c.border }
-- StatusLineNC
theme.base.StatusLineNC = inactive