26 lines
375 B
Nix
26 lines
375 B
Nix
[
|
|
{
|
|
mode = "i";
|
|
key = "<A-h>";
|
|
action = "<Left>";
|
|
options.silent = true;
|
|
}
|
|
{
|
|
mode = "i";
|
|
key = "<A-j>";
|
|
action = "<Down>";
|
|
options.silent = true;
|
|
}
|
|
{
|
|
mode = "i";
|
|
key = "<A-k>";
|
|
action = "<Up>";
|
|
options.silent = true;
|
|
}
|
|
{
|
|
mode = "i";
|
|
key = "<A-l>";
|
|
action = "<Right>";
|
|
options.silent = true;
|
|
}
|
|
]
|