summaryrefslogtreecommitdiffstats
path: root/users/sils/nixvim/maps/default.nix
blob: ecef03e82fc212bd063f7665f72c31c5aefb2158 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  terminal = {
    "<A-h>" = ''<C-\><C-N><C-w>h'';
    "<A-j>" = ''<C-\><C-N><C-w>j'';
    "<A-k>" = ''<C-\><C-N><C-w>k'';
    "<A-l>" = ''<C-\><C-N><C-w>l'';
  };
  normal = {
    "<A-h>" = ''<C-\><C-N><C-w>h'';
    "<A-j>" = ''<C-\><C-N><C-w>j'';
    "<A-k>" = ''<C-\><C-N><C-w>k'';
    "<A-l>" = ''<C-\><C-N><C-w>l'';
  };
  insert = {
    "<A-h>" = ''<Esc><C-w>h'';
    "<A-j>" = ''<Esc><C-w>j'';
    "<A-k>" = ''<Esc><C-w>k'';
    "<A-l>" = ''<Esc><C-w>l'';
  };
}