dotfiles/home/modules/tui/neovim/plugins/barbar.nix

10 lines
172 B
Nix
Raw Normal View History

2024-12-05 03:11:13 +00:00
{
programs.nixvim.plugins.barbar = {
enable = true;
keymaps = {
next.key = "<TAB>";
previous.key = "<S-TAB>";
close.key = "<C-w>";
};
};
}