my-nvim-setup/init.lua

18 lines
311 B
Lua
Raw Normal View History

2021-07-09 09:14:04 +05:30
require "options"
2021-03-12 12:34:15 +05:30
2021-07-18 22:11:52 +05:30
local async
async =
vim.loop.new_async(
vim.schedule_wrap(
function()
require "pluginList"
require "plugins.bufferline"
require "mappings"
require("utils").hideStuff()
2021-07-18 22:11:52 +05:30
async:close()
end
)
2021-07-18 22:11:52 +05:30
)
async:send()