diff options
Diffstat (limited to 'nixos/modules/nixvim/plugins/barbar.nix')
-rw-r--r-- | nixos/modules/nixvim/plugins/barbar.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nixos/modules/nixvim/plugins/barbar.nix b/nixos/modules/nixvim/plugins/barbar.nix new file mode 100644 index 0000000..516ec13 --- /dev/null +++ b/nixos/modules/nixvim/plugins/barbar.nix @@ -0,0 +1,12 @@ +{ + programs.nixvim.plugins.barbar = { + enable = true; + keymaps = { + silent = true; + + next = "<TAB>"; + previous = "<S-TAB>"; + close = "<C-q>"; + }; + }; +} |