summaryrefslogtreecommitdiff
path: root/config/plugins/bufferline.nix
diff options
context:
space:
mode:
Diffstat (limited to 'config/plugins/bufferline.nix')
-rw-r--r--config/plugins/bufferline.nix19
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";
+ }
+ ];
+ };
+}