snowflake/home/programs/editors/neovim/plugins/editor/bufferline.nix

18 lines
321 B
Nix
Raw Normal View History

2024-10-28 19:30:48 -04:00
_: {
programs.nixvim.plugins.bufferline = {
enable = true;
settings = {
options = {
offsets = [
{
filetype = "neo-tree";
highlight = "Directory";
text = "File Explorer";
text_align = "center";
}
];
};
};
};
}