2024-03-20 22:28:42 -05:00
|
|
|
-- Load the different config files
|
2024-03-26 16:47:12 -05:00
|
|
|
package.path = package.path .. ';' .. vim.fn.stdpath("config") .. "/config/?.lua"
|
2024-03-20 17:55:18 -05:00
|
|
|
|
2024-03-20 22:28:42 -05:00
|
|
|
-- Load global configs
|
|
|
|
require("globals")
|
2024-03-22 13:02:23 -05:00
|
|
|
-- Load plugins using lazy.nvim
|
2024-03-21 00:39:15 -05:00
|
|
|
require("plugins")
|
2024-03-20 22:28:42 -05:00
|
|
|
-- Load keymaps
|
|
|
|
require("keymaps")
|
2024-03-13 14:07:20 -05:00
|
|
|
|