1
Fork 0

neovim: Fix the transparency for lualine

This commit is contained in:
caem 2024-06-26 15:15:21 +02:00
parent 70757c4b1e
commit edef6fdd84
Signed by: caem
GPG key ID: 69A830D03203405F

View file

@ -15,13 +15,13 @@ return {
normal = { normal = {
c = { c = {
fg = rgb_to_hex(hl("Normal").fg), fg = rgb_to_hex(hl("Normal").fg),
bg = rgb_to_hex(hl("Normal").bg), bg = "none",
}, },
}, },
inactive = { inactive = {
c = { c = {
fg = rgb_to_hex(hl("Normal").fg), fg = rgb_to_hex(hl("Normal").fg),
bg = rgb_to_hex(hl("Normal").bg), bg = "none",
}, },
}, },
}, },