From fbc52d72d7c46a2ae155f38fa89522f7e29e74d4 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Tue, 17 Sep 2024 14:27:47 -0700 Subject: [PATCH] feat!: disable unnecessary keymaps for window --- config/keymaps.nix | 45 --------------------------------------------- 1 file changed, 45 deletions(-) diff --git a/config/keymaps.nix b/config/keymaps.nix index ea9c4aa..78bc90c 100644 --- a/config/keymaps.nix +++ b/config/keymaps.nix @@ -35,42 +35,6 @@ desc = "Zen mode"; }; } - { - action = "h"; - key = ""; - options = { - silent = true; - noremap = true; - desc = "Move to left window"; - }; - } - { - action = "j"; - key = ""; - options = { - silent = true; - noremap = true; - desc = "Move to lower window"; - }; - } - { - action = "k"; - key = ""; - options = { - silent = true; - noremap = true; - desc = "Move to upper window"; - }; - } - { - action = "l"; - key = ""; - options = { - silent = true; - noremap = true; - desc = "Move to right window"; - }; - } { action = "close"; key = "wd"; @@ -80,15 +44,6 @@ desc = "Close current window"; }; } - { - action = "Bdelete!close"; - key = "wk"; - options = { - silent = true; - noremap = true; - desc = "Close current window, along with the buffer open inside."; - }; - } { action = "Telescope find_files"; key = "ff";