diff --git a/modules/home-manager/nixvim.nix b/modules/home-manager/nixvim.nix index b08bfc4..52c42b3 100644 --- a/modules/home-manager/nixvim.nix +++ b/modules/home-manager/nixvim.nix @@ -40,5 +40,39 @@ confirm = true; }; + + keymaps = [ + { + mode = "n"; + key = ""; + action = "nohlsearch"; + options.silent = true; + } + + { + mode = "n"; + key = ""; + action = ""; + options.desc = "Move focus to the left window"; + } + { + mode = "n"; + key = ""; + action = ""; + options.desc = "Move focus to the right window"; + } + { + mode = "n"; + key = ""; + action = ""; + options.desc = "Move focus to the upper window"; + } + { + mode = "n"; + key = ""; + action = ""; + options.desc = "Move focus to the lower window"; + } + ]; }; }