From 5d7d204a11a0e15fe29b1e832c7aa13bd7a8c475 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Wed, 1 Jul 2026 16:27:21 +0200 Subject: [PATCH] Modules/Neovim: Update tabby background color to be consistent with lualine --- home/homemodules/neovim/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/home/homemodules/neovim/default.nix b/home/homemodules/neovim/default.nix index 0b87c85..ba6ceae 100644 --- a/home/homemodules/neovim/default.nix +++ b/home/homemodules/neovim/default.nix @@ -1827,6 +1827,7 @@ in { function(line) local base = { fg = "#${color.hex.base}", bg = "#${color.hex.base}" } 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 accent = { fg = "#${color.hex.accent}", bg = "#${color.hex.accent}" } @@ -1852,14 +1853,14 @@ in { line.sep(sep_start, accent, crust), tab.number(), tab.name(), - line.sep(sep_end, crust, base), + line.sep(sep_end, crust, mantle), hl = hl, margin = " ", } end), -- Background - hl = bg, + hl = mantle, } end '';