about summary refs log tree commit diff stats
path: root/hm
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-10-18 12:49:57 +0200
committerSoispha <soispha@vhack.eu>2023-10-18 12:49:57 +0200
commit84451ddc4978526316f01b072b448522d00c300d (patch)
treed10da8b1ffd4477379e4c9f033810d66033a64d7 /hm
parentchore(hm/conf/taskwarrior/projects): Update (diff)
downloadnixos-config-84451ddc4978526316f01b072b448522d00c300d.zip
fix(hm/conf/nvim/plgs/leap): Map things to 'j'
'j' is both more memorable (*j*ump) and also not yet mapped to something
important, as it's a relic of the old vim keys. This frees up 'm' for
marks again
Diffstat (limited to 'hm')
-rw-r--r--hm/soispha/conf/nvim/plgs/leap/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/hm/soispha/conf/nvim/plgs/leap/default.nix b/hm/soispha/conf/nvim/plgs/leap/default.nix
index 568dcec0..4e7ae60c 100644
--- a/hm/soispha/conf/nvim/plgs/leap/default.nix
+++ b/hm/soispha/conf/nvim/plgs/leap/default.nix
@@ -28,19 +28,19 @@
     };
     keymaps = [
       {
-        key = "m";
+        key = "j";
         action = "<Plug>(leap-forward-to)";
-        options.desc = "leap forward to";
+        options.desc = "jump forward to";
       }
       {
-        key = "M";
+        key = "J";
         action = "<Plug>(leap-backward-to)";
-        options.desc = "leap backward to";
+        options.desc = "jump backward to";
       }
       {
-        key = "gs";
+        key = "gj";
         action = "<Plug>(leap-from-window)";
-        options.desc = "leap to enterable windows";
+        options.desc = "jump to enterable windows";
       }
       /*
             {key= "x";