diff --git a/config/keymaps.nix b/config/keymaps.nix index 4a456a5..ff552ab 100644 --- a/config/keymaps.nix +++ b/config/keymaps.nix @@ -11,6 +11,42 @@ }; } + { # focus window left + mode = ["n"]; + key = ""; + action = "h"; + options = { + silent = true; + }; + } + + { # focus window down + mode = ["n"]; + key = ""; + action = "j"; + options = { + silent = true; + }; + } + + { # focus window up + mode = ["n"]; + key = ""; + action = "k"; + options = { + silent = true; + }; + } + + { # focus window right + mode = ["n"]; + key = ""; + action = "l"; + options = { + silent = true; + }; + } + { # buffer prefix mode = "n"; key = "b";