NvChad/init.lua

18 lines
311 B
Lua
Raw Normal View History

2021-07-08 22:44:04 -05:00
require "options"
2021-03-12 01:04:15 -06:00
2021-07-18 11:41:52 -05:00
local async
async =
vim.loop.new_async(
vim.schedule_wrap(
function()
require "pluginList"
require "plugins.bufferline"
require "mappings"
require("utils").hideStuff()
2021-07-18 11:41:52 -05:00
async:close()
end
)
2021-07-18 11:41:52 -05:00
)
async:send()