NvChad/init.lua
siduck76 559acbd135
rm unneeded error landing
nvim by default shows stackrace path so I dont think we should be having this.
2021-07-23 18:17:31 +05:30

23 lines
380 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
pcall(require, chad_modules[i])
end
async:close()
end
)
)
async:send()