require "nvchad.mappings" -- add yours here local map = vim.keymap.set map("n", ";", ":", { desc = "CMD enter command mode" }) map("i", "jk", "") -- map({ "n", "i", "v" }, "", " w ") -- Flaoting Terminal map({ "n", "t" }, "", function() require("nvchad.term").toggle { pos = "float", id = "floatTerm" } end, { desc = "terminal toggle floating term" }) -- cycleling through buffers map("n", "tk", " bnext ", {desc = "Next Buffer"}) map("n", "tj", " bprev ", {desc = "Previous Buffer"})