neovim-confs/init.lua

22 lines
354 B
Lua
Raw Normal View History

2021-07-09 05:44:04 +02:00
require "options"
2021-03-12 08:04:15 +01:00
local chad_modules = {
"pluginList",
2021-07-21 06:20:00 +02:00
"mappings",
"utils"
}
2021-07-18 18:41:52 +02:00
local async
async =
vim.loop.new_async(
vim.schedule_wrap(
function()
for i = 1, #chad_modules, 1 do
pcall(require, chad_modules[i])
end
2021-07-18 18:41:52 +02:00
async:close()
end
)
2021-07-18 18:41:52 +02:00
)
async:send()