Files
topgrade/src/steps/upgrade.vim

24 lines
314 B
VimL
Raw Normal View History

2020-06-28 08:33:40 +03:00
if exists(":NeoBundleUpdate")
echo NeoBundle
NeoBundleUpdate
endif
if exists(":PluginUpdate")
echo "Plugin"
PluginUpdate
endif
if exists(":PlugUpgrade")
echo "Plug"
PlugUpgrade
PlugClean
PlugUpdate
endif
if exists(":PackerUpdate")
echo "Packer"
PackerSync
endif
quitall