559acbd135
nvim by default shows stackrace path so I dont think we should be having this.
23 lines
380 B
Lua
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()
|