Nix-Hyprland/nixos/modules/nixvim/plugins/barbar.nix

13 lines
185 B
Nix
Raw Normal View History

2024-04-16 20:52:14 -04:00
{
programs.nixvim.plugins.barbar = {
enable = true;
keymaps = {
silent = true;
next = "<TAB>";
previous = "<S-TAB>";
2024-04-18 00:51:55 -04:00
# close = "<C-q>";
2024-04-16 20:52:14 -04:00
};
};
}