mirror of
https://github.com/Dannecron/nvchad-starter.git
synced 2025-12-25 20:02:33 +03:00
11 lines
206 B
Lua
11 lines
206 B
Lua
require "nvchad.mappings"
|
|
|
|
-- add yours here
|
|
|
|
local map = vim.keymap.set
|
|
|
|
map("n", ";", ":", { desc = "CMD enter command mode" })
|
|
map("i", "jk", "<ESC>")
|
|
|
|
-- map({ "n", "i", "v" }, "<C-s>", "<cmd> w <cr>")
|