Files
cnix/home/bin/neovim/plugins/barbar.nix
2024-08-03 14:59:44 +02:00

11 lines
173 B
Nix

{
programs.nixvim.plugins.barbar = {
enable = true;
keymaps = {
next.key = "<TAB>";
previous.key = "<S-TAB>";
close.key = "<C-w>";
};
};
}