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 ") map("n", "", " Telescope find_files") map("n", "", " Telescope live_grep") map("n", "fs", " Telescope grep_string") map("n", "fb", " Telescope buffers") map("n", "fh", " Telescope help_tags")