fix(nvim): remove disable arrow keys bindings

This commit is contained in:
Michael Thomas 2024-07-08 11:33:34 -04:00
parent eb0b879bea
commit 8da217aee3

View File

@ -109,47 +109,6 @@
action = "<cmd>vertical resize +2<cr>";
options = {desc = "Increase Window Width";};
}
# Disable arrow keys
{
mode = ["n" "i"];
key = "<Up>";
action = "<Nop>";
options = {
silent = true;
noremap = true;
desc = "Disable Up arrow key";
};
}
{
mode = ["n" "i"];
key = "<Down>";
action = "<Nop>";
options = {
silent = true;
noremap = true;
desc = "Disable Down arrow key";
};
}
{
mode = ["n" "i"];
key = "<Right>";
action = "<Nop>";
options = {
silent = true;
noremap = true;
desc = "Disable Right arrow key";
};
}
{
mode = ["n" "i"];
key = "<Left>";
action = "<Nop>";
options = {
silent = true;
noremap = true;
desc = "Disable Left arrow key";
};
}
# General maps
{