diff options
| author | seth <[email protected]> | 2023-12-18 01:28:42 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-12-18 02:18:35 -0500 |
| commit | 8faa242f21648e52a6bbdfa803fd4ea1b0e347e0 (patch) | |
| tree | eff6694cefb2f821bf19b0d8cb3d97bf48cb15b9 /config/plugins/bufferline.nix | |
| parent | 9fe8afd0c5f2b439176728d8863570bf22614dbd (diff) | |
port to nixvim
Diffstat (limited to 'config/plugins/bufferline.nix')
| -rw-r--r-- | config/plugins/bufferline.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/config/plugins/bufferline.nix b/config/plugins/bufferline.nix new file mode 100644 index 0000000..fe1cd17 --- /dev/null +++ b/config/plugins/bufferline.nix @@ -0,0 +1,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"; + } + ]; + }; +} |
