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

11 lines
362 B
Lua
Raw Normal View History

2022-01-10 09:55:15 -06:00
-- 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")
2022-01-12 21:38:31 -06:00
require("core.init")
2022-01-12 22:04:55 -06:00
-- Post load, for things that need to setup keybindings etc after the fact
require("plugins.postload")
2022-01-12 22:13:47 -06:00
require("core.postload")