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

18 lines
311 B
Lua

require "options"
local async
async =
vim.loop.new_async(
vim.schedule_wrap(
function()
require "pluginList"
require "plugins.bufferline"
require "mappings"
require("utils").hideStuff()
async:close()
end
)
)
async:send()