Files
cnix/home/core/tui/neovim/plugins/barbar.nix
2024-07-15 19:40:02 +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>";
};
};
}