Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Autoupdate VIM Plugins?

Tags:

vim

macvim

Is it possible to update vim plugins automatically?

like image 756
1passenger Avatar asked Nov 16 '09 18:11

1passenger


People also ask

How do I enable plugins in Vim?

Starting with Vim version 8, you can install plugins without the need for a package manager by using the default package management tool. You can place Vim plugins in the ~/. vim/pack/vendor/start/plugin_name directory. Note that the plugin_name folder name will vary from plugin to plugin.

Where are Vim plugins stored?

By default, Vim expects each plugin to be stored in the ~/. vim/pack/<my-plugins>/. When Vim starts, it will load all plugins stored in /. vim/pack/my-plugins/start.


1 Answers

To provide an up to date answer to this old question, Vundle works really great. It simulates the ruby bundle gem, you simply configure your Bundles in .vimrc and then run :BundleInstall! inside vim.

like image 164
Speed Avatar answered Sep 29 '22 07:09

Speed