Initial Commit

This commit is contained in:
Falon Clark
2026-03-19 13:09:21 -04:00
commit a7f8df9e50
24 changed files with 537 additions and 0 deletions

10
init.lua Normal file
View File

@@ -0,0 +1,10 @@
-- Rebind leader to space
vim.keymap.set("n", "<Space>", "<Nop>", { noremap = true, silent = true })
vim.g.mapleader = " "
vim.g.maplocalleader = " "
require("config.lazy")
require("config.options")
require("config.mappings")
require("config.autocmd")