require "nvchad.mappings" -- add yours here local map = vim.keymap.set map("n", ";", ":", { desc = "CMD enter command mode" }) map("i", "jk", "") map("n", "", "TmuxNavigateLeft", {desc = "Move tmux windows focus left"}) map("n", "", "TmuxNavigateRight", {desc = "Move tmux windows focus right"}) map("n", "", "TmuxNavigateDown", {desc = "Move tmux windows focus down"}) map("n", "", "TmuxNavigateUp", {desc = "Move tmux windows focus up"}) -- map({ "n", "i", "v" }, "", " w ")