require "nvchad.mappings" -- add yours here local map = vim.keymap.set -- disable arrow keys map("n", "", "") map("n", "", "") map("n", "", "") map("n", "", "") map("n", ";", ":", { desc = "CMD enter command mode" }) map("i", "jk", "") -- custom Leader binds map("n", "sd", ":s/", { desc = "Shortcut to sed" }) map("n", "qq", ":wqa", { desc = "Write all and quit all" }) -- map({ "n", "i", "v" }, "", " w ")