Neovim starting configuration
This commit is contained in:
parent
7fb61600ad
commit
e1bbb611da
12 changed files with 249 additions and 0 deletions
10
.config/nvim/lua/mappings.lua
Normal file
10
.config/nvim/lua/mappings.lua
Normal file
|
@ -0,0 +1,10 @@
|
|||
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>")
|
Loading…
Add table
Add a link
Reference in a new issue