12 lines
279 B
Nix
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
|
|
'';
|
|
};
|
|
}
|