From 77763c7918d57283a946cd59604a4db07416608b Mon Sep 17 00:00:00 2001 From: Hass Date: Fri, 2 Sep 2022 07:13:21 +0100 Subject: [PATCH] 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 --- 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 c750941..8146f6e 100644 --- a/lua/tokyonight/theme.lua +++ b/lua/tokyonight/theme.lua @@ -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