26 lines
352 B
Nix
26 lines
352 B
Nix
{
|
|
hardtime-nvim = {
|
|
enable = true;
|
|
setupOpts = {
|
|
disabled_keys = {
|
|
"h" = [
|
|
"n"
|
|
"x"
|
|
];
|
|
"j" = [
|
|
"n"
|
|
"x"
|
|
];
|
|
"k" = [
|
|
"n"
|
|
"x"
|
|
];
|
|
"l" = [
|
|
"n"
|
|
"x"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
whichKey.enable = true;
|
|
}
|