Use newer Vundle syntax

Vundle has deprecated the `Bundle` syntax, replacing it with `Plugin`.

I've also added the abbreviated GitHub syntax (simply `username/repo`,
no need to pass the full git URL).
This commit is contained in:
Beau
2014-11-18 12:12:38 +00:00
parent 6fabdd2fab
commit 8fded9837e

View File

@@ -125,11 +125,11 @@ Pathogen simplifies installation considerably.
will automatically get the jedi library with the jedi-vim plugin. Add the
following to the Bundles section in your .vimrc file: >
Bundle 'git://github.com/davidhalter/jedi-vim'
Plugin 'davidhalter/jedi-vim'
2. Issue the following command in Vim: >
:BundleInstall
:PluginInstall
Help tags are generated automatically, so you should be good to go.