nixvim/config/plugins/ui/bufferline.nix
Patrick Michl 28d8213ebc
add config
2024-11-05 13:01:15 +01:00

27 lines
507 B
Nix

{
plugins = {
bufferline = {
enable = true;
settings = {
options = {
diagnostics = "nvim_lsp";
mode = "buffers";
close_icon = " ";
buffer_close_icon = "󰱝 ";
modified_icon = "󰔯 ";
offsets = [
{
filetype = "neo-tree";
text = "Neo-tree";
highlight = "Directory";
text_align = "left";
}
];
};
};
};
};
}