Added bufferline config for catppuccin

This commit is contained in:
EsVagy42 2026-03-10 16:22:30 +01:00
parent 98697f624a
commit 2885a32dd5

View file

@ -1,3 +1,12 @@
{ {
plugins.bufferline.enable = true; 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
'';
};
} }