topgrade 17.6.1

Upgrade all the things
" AstroUpdate calls a plugin manager - Lazy as of this writing. So we check for it before
" others. Add to init.lua:
" updater = {
"   skip_prompts = true,
" },
if exists(":AstroUpdate")
    echo "AstroUpdate"
    autocmd User AstroUpdateCompleted quitall
    AstroUpdate
    " Astro includes Lazy etc. So we end early.
    finish
endif

if has("nvim")
    lua << EOF
if vim.pack and next(vim.pack.get(nil, { info = false })) ~= nil then
    if vim.env.TOPGRADE_VIM_PACK_PRUNE == "true" and vim.fn.exists(":packdel") ~= 0 then
        local ok, err = pcall(vim.cmd, "packdel ++all")
        if not ok then
            if tostring(err):find("E5809: Nothing to remove", 1, true) then
                print("No inactive vim.pack packages to prune")
            else
                error(err)
            end
        end
    end
    vim.pack.update(nil, { force = true })
end
EOF
endif

if exists(":MasonUpdate")
	echo "MasonUpdate"
	MasonUpdate
endif

if exists(":NeoBundleUpdate")
    echo "NeoBundle"
    NeoBundleUpdate
endif

if exists(":PluginUpdate")
    echo "Plugin"
    PluginUpdate
endif

if exists(":PlugUpgrade")
    echo "Plug"
    PlugUpgrade
    if $TOPGRADE_FORCE_PLUGUPDATE
        PlugUpdate!
    else
        PlugUpdate
    endif
endif

if exists("*dein#update()")
    echo "dein#update()"
    call dein#update()
endif

if exists(":DeinUpdate")
    echo "DeinUpdate"
    DeinUpdate
endif

if exists(":PaqUpdate")
    echo "PaqUpdate"
    PaqUpdate
endif

if exists(":Lazy")
    echo "Lazy Update"
    Lazy! sync | qa
endif

if exists(':PackerSync')
    echo "Packer"
    autocmd User PackerComplete quitall
    PackerSync
else
    quitall
endif