nixvim/config/bufferline.nix
2026-03-10 16:22:30 +01:00

12 lines
279 B
Nix

{
plugins.bufferline = {
enable = true;
luaConfig.pre = ''
opts = function(_, opts)
if (vim.g.colors_name or ""):find("catppuccin") then
opts.highlights = require("catppuccin.special.bufferline").get_theme()
end
end
'';
};
}