mirror of
https://github.com/CompeyDev/my-nvim-setup.git
synced 2025-05-04 10:53:45 +01:00
22 lines
380 B
Lua
22 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()
|