This commit is contained in:
Greg 2026-03-05 13:52:41 +02:00
parent eb7d49c0ca
commit 94f314c7ea

View file

@ -36,8 +36,6 @@ end)
map("n", "<X1Mouse>", "<C-O>", { silent = true, desc = "go back with mouse" }) map("n", "<X1Mouse>", "<C-O>", { silent = true, desc = "go back with mouse" })
map("n", "<X2Mouse>", "<C-I>", { silent = true, desc = "go forward with mouse" }) map("n", "<X2Mouse>", "<C-I>", { silent = true, desc = "go forward with mouse" })
map("n", "<C-Tab>", "<cmd>e #<cr>", { desc = "Switch to Other Buffer" })
-- Keybindings to make split navigation easier. -- Keybindings to make split navigation easier.
-- Use CTRL+<hjkl> to switch between windows -- Use CTRL+<hjkl> to switch between windows
-- --
@ -47,6 +45,7 @@ map("n", "<C-l>", "<C-w><C-l>", { desc = "Move focus to the right window" })
map("n", "<C-j>", "<C-w><C-j>", { desc = "Move focus to the lower window" }) map("n", "<C-j>", "<C-w><C-j>", { desc = "Move focus to the lower window" })
map("n", "<C-k>", "<C-w><C-k>", { desc = "Move focus to the upper window" }) map("n", "<C-k>", "<C-w><C-k>", { desc = "Move focus to the upper window" })
map("n", "<C-Tab>", "<cmd>e #<cr>", { desc = "Switch to Other Buffer" })
map("n", "<S-h>", ":bprevious<CR>", { desc = "Previous buffer" }) map("n", "<S-h>", ":bprevious<CR>", { desc = "Previous buffer" })
map("n", "<S-l>", ":bnext<CR>", { desc = "Next buffer" }) map("n", "<S-l>", ":bnext<CR>", { desc = "Next buffer" })