diff --git a/.config/nvim/lua/keymaps.lua b/.config/nvim/lua/keymaps.lua index 1573125..4d7904e 100644 --- a/.config/nvim/lua/keymaps.lua +++ b/.config/nvim/lua/keymaps.lua @@ -36,8 +36,6 @@ end) map("n", "", "", { silent = true, desc = "go back with mouse" }) map("n", "", "", { silent = true, desc = "go forward with mouse" }) -map("n", "", "e #", { desc = "Switch to Other Buffer" }) - -- Keybindings to make split navigation easier. -- Use CTRL+ to switch between windows -- @@ -47,6 +45,7 @@ map("n", "", "", { desc = "Move focus to the right window" }) map("n", "", "", { desc = "Move focus to the lower window" }) map("n", "", "", { desc = "Move focus to the upper window" }) +map("n", "", "e #", { desc = "Switch to Other Buffer" }) map("n", "", ":bprevious", { desc = "Previous buffer" }) map("n", "", ":bnext", { desc = "Next buffer" })