summaryrefslogtreecommitdiffstats
path: root/nixos/modules/nixvim/plugins/barbar.nix
blob: 218fc90a28395f81b93ed72c6f7977656c1c8089 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{
  programs.nixvim.plugins.barbar = {
    enable = true;
    keymaps = {
      silent = true;

      next = "<TAB>";
      previous = "<S-TAB>";
      # close = "<C-q>";
    };
  };
}