You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
my-nvim-lua/init.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()