VoidVim/lua/mappings.lua

11 lines
206 B
Lua
Raw Normal View History

2024-03-09 19:03:44 +03:00
require "nvchad.mappings"
-- add yours here
local map = vim.keymap.set
map("n", ";", ":", { desc = "CMD enter command mode" })
2024-03-18 04:11:03 +03:00
map("i", "jk", "<ESC>")
2024-03-09 19:03:44 +03:00
2024-03-18 04:11:03 +03:00
-- map({ "n", "i", "v" }, "<C-s>", "<cmd> w <cr>")