Modules/Neovim: Update tabby background color to be consistent with lualine

This commit is contained in:
2026-07-01 16:27:21 +02:00
parent de33562839
commit 5d7d204a11
+3 -2
View File
@@ -1827,6 +1827,7 @@ in {
function(line) function(line)
local base = { fg = "#${color.hex.base}", bg = "#${color.hex.base}" } local base = { fg = "#${color.hex.base}", bg = "#${color.hex.base}" }
local crust = { fg = "#${color.hex.crust}", bg = "#${color.hex.crust}" } local crust = { fg = "#${color.hex.crust}", bg = "#${color.hex.crust}" }
local mantle = { fg = "#${color.hex.mantle}", bg = "#${color.hex.mantle}" }
local text = { fg = "#${color.hex.text}", bg = "#${color.hex.crust}" } local text = { fg = "#${color.hex.text}", bg = "#${color.hex.crust}" }
local accent = { fg = "#${color.hex.accent}", bg = "#${color.hex.accent}" } local accent = { fg = "#${color.hex.accent}", bg = "#${color.hex.accent}" }
@@ -1852,14 +1853,14 @@ in {
line.sep(sep_start, accent, crust), line.sep(sep_start, accent, crust),
tab.number(), tab.number(),
tab.name(), tab.name(),
line.sep(sep_end, crust, base), line.sep(sep_end, crust, mantle),
hl = hl, hl = hl,
margin = " ", margin = " ",
} }
end), end),
-- Background -- Background
hl = bg, hl = mantle,
} }
end end
''; '';