2021-07-09 05:44:04 +02:00
|
|
|
require "options"
|
2021-03-12 08:04:15 +01:00
|
|
|
|
2021-07-20 20:19:31 +02:00
|
|
|
local chad_modules = {
|
|
|
|
"pluginList",
|
|
|
|
"plugins.bufferline",
|
|
|
|
"mappings",
|
|
|
|
"utils",
|
|
|
|
}
|
|
|
|
|
2021-07-18 18:41:52 +02:00
|
|
|
local async
|
|
|
|
async =
|
|
|
|
vim.loop.new_async(
|
|
|
|
vim.schedule_wrap(
|
|
|
|
function()
|
2021-07-20 20:19:31 +02:00
|
|
|
for i = 1, #chad_modules, 1 do
|
|
|
|
local ok, res = xpcall(require, debug.traceback, chad_modules[i])
|
|
|
|
if not (ok) then
|
|
|
|
print("NvChad [E0]: There was an error loading the module '" .. chad_modules[i] .. "' -->")
|
|
|
|
print(res) -- print stack traceback of the error
|
|
|
|
end
|
|
|
|
end
|
2021-07-18 18:41:52 +02:00
|
|
|
async:close()
|
|
|
|
end
|
2021-07-15 17:47:47 +02:00
|
|
|
)
|
2021-07-18 18:41:52 +02:00
|
|
|
)
|
|
|
|
async:send()
|