From 8da217aee3534ab131929d2a89424c3e6427e95a Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Mon, 8 Jul 2024 11:33:34 -0400 Subject: [PATCH] fix(nvim): remove disable arrow keys bindings --- pkgs/nvim/config/keymaps.nix | 41 ------------------------------------ 1 file changed, 41 deletions(-) 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 {