refactor: redoing nvim config

This commit is contained in:
Cipher Vance
2025-11-17 08:12:11 -06:00
parent a74193080d
commit 39f901a882
38 changed files with 241 additions and 1201 deletions

10
nvim/lua/mappings.lua Normal file
View 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>")