From bc55e5efb6dbb71d03a396ea5c8eada4d0f6f871 Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Thu, 22 May 2025 14:06:31 +0800 Subject: [PATCH] fix(hardtime-nvim): make arrowkeys work in insert mode --- modules/home/cli/editor/nvf/binds.nix | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/modules/home/cli/editor/nvf/binds.nix b/modules/home/cli/editor/nvf/binds.nix index 3e8cee5..43d18de 100644 --- a/modules/home/cli/editor/nvf/binds.nix +++ b/modules/home/cli/editor/nvf/binds.nix @@ -1,4 +1,26 @@ { - hardtime-nvim.enable = true; + hardtime-nvim = { + enable = true; + setupOpts = { + disabled_keys = { + "" = [ + "n" + "x" + ]; + "" = [ + "n" + "x" + ]; + "" = [ + "n" + "x" + ]; + "" = [ + "n" + "x" + ]; + }; + }; + }; whichKey.enable = true; }