fix(hardtime-nvim): make arrowkeys work in insert mode
This commit is contained in:
parent
047352753e
commit
bc55e5efb6
1 changed files with 23 additions and 1 deletions
|
@ -1,4 +1,26 @@
|
|||
{
|
||||
hardtime-nvim.enable = true;
|
||||
hardtime-nvim = {
|
||||
enable = true;
|
||||
setupOpts = {
|
||||
disabled_keys = {
|
||||
"<Up>" = [
|
||||
"n"
|
||||
"x"
|
||||
];
|
||||
"<Down>" = [
|
||||
"n"
|
||||
"x"
|
||||
];
|
||||
"<Left>" = [
|
||||
"n"
|
||||
"x"
|
||||
];
|
||||
"<Right>" = [
|
||||
"n"
|
||||
"x"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
whichKey.enable = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue