From e27f274e339a6ddab73ca8e2491fd5932b71d895 Mon Sep 17 00:00:00 2001 From: Dinesh Salunke Date: Thu, 13 Jul 2023 21:13:35 +0530 Subject: [PATCH] refactor: update the treesitter keymaps --- lua/config/keymaps.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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" })