Dot_Files/.config/nvim/lua/main.lua
2022-05-11 21:00:57 -05:00

18 lines
708 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.
require('core.init')
require('plugins.init')
require('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.
require('plugins.postload')
require('core.postload')