add buffer switching keymaps
This commit is contained in:
parent
87ce731d6e
commit
e5d551620b
|
|
@ -13,3 +13,7 @@ map("i", "jk", "<ESC>")
|
|||
map({ "n", "t" }, "<C-\\>", function()
|
||||
require("nvchad.term").toggle { pos = "float", id = "floatTerm" }
|
||||
end, { desc = "terminal toggle floating term" })
|
||||
|
||||
-- cycleling through buffers
|
||||
map("n", "tk", "<cmd> bnext <CR>", {desc = "Next Buffer"})
|
||||
map("n", "tj", "<cmd> bprev <CR>", {desc = "Previous Buffer"})
|
||||
|
|
|
|||
Reference in New Issue