initial commit

This commit is contained in:
2026-04-17 04:46:48 -04:00
commit 444b5739bd
7 changed files with 459 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
--[[
┌────────────────────────────────────────────────────────────────┐
│ Rootiest Neovim │
└────────────────────────────────────────────────────────────────┘
--]]
-- Set leader keys before loading any plugins
vim.g.mapleader = " "
vim.g.maplocalleader = " "
-- Initialize global registry
_G.Config = {
plugins = {},
called = {},
}
-- Load core modules
require('lazyload')
require('options')
require('plugins')
require('keymaps')