-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeymaps.nix
More file actions
67 lines (67 loc) · 1.04 KB
/
keymaps.nix
File metadata and controls
67 lines (67 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
keymaps = [
{
action = ":vsp<CR>";
key = "t";
options = {
silent = true;
};
}
{
action = ":q<CR>";
key = "<C-q>";
options = {
silent = true;
};
}
{
action = ":w<CR>:!fourmolu -i .<CR>";
key = "<C-s>";
options = {
silent = true;
};
}
{
action = "<C-w>h";
key = "<A-Left>";
options = {
silent = true;
};
}
{
action = "<C-w>j";
key = "<A-Down>";
options = {
silent = true;
};
}
{
action = "<C-w>k";
key = "<A-Up>";
options = {
silent = true;
};
}
{
action = "<C-w>l";
key = "<A-Right>";
options = {
silent = true;
};
}
{
action = ":BufferLineCyclePrev<CR>";
key = "<A-S-Left>";
options = {
silent = true;
};
}
{
action = ":BufferLineCycleNext<CR>";
key = "<A-S-Right>";
options = {
silent = true;
};
}
];
}