fix(hardtime-nvim): make arrowkeys work in insert mode

This commit is contained in:
Mohammad Rafiq 2025-05-22 14:06:31 +08:00
parent 047352753e
commit bc55e5efb6
No known key found for this signature in database

View file

@ -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;
}