Dot_Files/.config/nvim/lua/main.lua
2022-05-11 14:22:30 -05:00

19 lines
711 B
Lua
Executable File

-- INFO: Primary loading, where most things are loaded in
--
-- INFO: All modules/dirs that are going to be loaded
-- INFO: SHOULD have a init.lua file associated with them.
-- INFO: init.lua is responsible for loading all configuration
-- INFO: related to that directory.
load("core.init")
load("core.init")
load("plugins.init")
load("utils.init")
-- INFO: Post load, for things that need to setup keybindings etc after the fact
--
-- NOTE: All postload modules should be independent of each other, they shouldn't
-- NOTE: rely on each other's load order. That type of logic should be shifted
-- NOTE: into non-postload regions then handled in postload modules.
load("plugins.postload")
load("core.postload")