From 84451ddc4978526316f01b072b448522d00c300d Mon Sep 17 00:00:00 2001 From: Soispha Date: Wed, 18 Oct 2023 12:49:57 +0200 Subject: 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 --- hm/soispha/conf/nvim/plgs/leap/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'hm') 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 = "(leap-forward-to)"; - options.desc = "leap forward to"; + options.desc = "jump forward to"; } { - key = "M"; + key = "J"; action = "(leap-backward-to)"; - options.desc = "leap backward to"; + options.desc = "jump backward to"; } { - key = "gs"; + key = "gj"; action = "(leap-from-window)"; - options.desc = "leap to enterable windows"; + options.desc = "jump to enterable windows"; } /* {key= "x"; -- cgit 1.4.1