Dot_Files/.config/nvim/lua/main.lua
2022-02-25 14:57:02 -06:00

16 lines
647 B
Lua
Executable File

-- 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")