diff --git a/lua/config/keymaps.lua b/lua/config/keymaps.lua index bc856a8..24fd81c 100644 --- a/lua/config/keymaps.lua +++ b/lua/config/keymaps.lua @@ -25,10 +25,10 @@ map("n", "", "BufferLineCyclePrev", { desc = "Prev buffer" }) map("n", "", "BufferLineCycleNext", { desc = "Next buffer" }) -- Resize window using arrow keys -map("n", "", "resize +2", { desc = "Increase window height" }) -map("n", "", "resize -2", { desc = "Decrease window height" }) -map("n", "", "vertical resize -2", { desc = "Decrease window width" }) -map("n", "", "vertical resize +2", { desc = "Increase window width" }) +map("n", "", "resize +2", { desc = "Increase window height" }) +map("n", "", "resize -2", { desc = "Decrease window height" }) +map("n", "", "vertical resize -2", { desc = "Decrease window width" }) +map("n", "", "vertical resize +2", { desc = "Increase window width" }) -- Move Lines map("v", "J", ":m '>+1gv=gv", { desc = "Move down" }) @@ -68,6 +68,6 @@ map("n", "]", "tabnext", { desc = "Next Tab" }) map("n", "d", "tabclose", { desc = "Close Tab" }) map("n", "[", "tabprevious", { desc = "Previous Tab" }) -map("t", "", [[]], { desc = "Escape on terminal" }) +-- map("t", "", [[]], { desc = "Escape on terminal" }) map("n", "", "ggG", { desc = "Select all" })