diff --git a/pkgs/nvim/config/keymaps.nix b/pkgs/nvim/config/keymaps.nix index 5e5490d..4b02c77 100644 --- a/pkgs/nvim/config/keymaps.nix +++ b/pkgs/nvim/config/keymaps.nix @@ -109,47 +109,6 @@ action = "vertical resize +2"; options = {desc = "Increase Window Width";}; } - # Disable arrow keys - { - mode = ["n" "i"]; - key = ""; - action = ""; - options = { - silent = true; - noremap = true; - desc = "Disable Up arrow key"; - }; - } - { - mode = ["n" "i"]; - key = ""; - action = ""; - options = { - silent = true; - noremap = true; - desc = "Disable Down arrow key"; - }; - } - { - mode = ["n" "i"]; - key = ""; - action = ""; - options = { - silent = true; - noremap = true; - desc = "Disable Right arrow key"; - }; - } - { - mode = ["n" "i"]; - key = ""; - action = ""; - options = { - silent = true; - noremap = true; - desc = "Disable Left arrow key"; - }; - } # General maps {