mirror of
https://github.com/Dannecron/nvchad-starter.git
synced 2025-12-25 20:02:33 +03:00
12 lines
248 B
Lua
12 lines
248 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("v", ">", ">gv", { desc = "indent" })
|
|
|
|
-- map({ "n", "i", "v" }, "<C-s>", "<cmd> w <cr>")
|