summaryrefslogtreecommitdiff
path: root/config/plugins/bufferline.nix
blob: fe1cd17c80dff12db69b6254425b8c562325c8bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  plugins.bufferline = {
    enable = true;

    alwaysShowBufferline = false;
    diagnostics = "nvim_lsp";
    mode = "buffers";
    numbers = "ordinal";
    separatorStyle = "slant";
    offsets = [
      {
        filetype = "neo-tree";
        text = "neo-tree";
        highlight = "Directory";
        text_align = "left";
      }
    ];
  };
}