Dot_Files/.config/nvim/lua/main.lua

16 lines
647 B
Lua
Raw Normal View History

-- 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.
2022-01-12 21:38:31 -06:00
require("core.init")
2022-01-15 19:15:09 -06:00
require("plugins.init")
require("utils.init")
2022-01-12 22:04:55 -06:00
-- 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.
2022-01-12 22:04:55 -06:00
require("plugins.postload")
2022-01-12 22:13:47 -06:00
require("core.postload")