Dot_Files/.config/nvim/lua/main.lua
2022-01-12 22:13:47 -06:00

11 lines
362 B
Lua
Executable File

-- All modules/dirs that are going to be loaded
-- SHOULD have a init.lua file associated with them.
-- init.lua is responsible for loading all configuration
-- related to that directory.
require("plugins.init")
require("core.init")
-- Post load, for things that need to setup keybindings etc after the fact
require("plugins.postload")
require("core.postload")