mirror of
https://github.com/NvChad/NvChad.git
synced 2024-11-08 13:10:25 +00:00
27 lines
597 B
Lua
27 lines
597 B
Lua
require "options"
|
|
|
|
local chad_modules = {
|
|
"pluginList",
|
|
"plugins.bufferline",
|
|
"mappings",
|
|
"utils"
|
|
}
|
|
|
|
local async
|
|
async =
|
|
vim.loop.new_async(
|
|
vim.schedule_wrap(
|
|
function()
|
|
for i = 1, #chad_modules, 1 do
|
|
local ok, res = xpcall(require, debug.traceback, chad_modules[i])
|
|
if not (ok) then
|
|
print("Error loading module : " .. chad_modules[i])
|
|
print(res) -- print stack traceback of the error
|
|
end
|
|
end
|
|
async:close()
|
|
end
|
|
)
|
|
)
|
|
async:send()
|