First step: Install Git and configure Curl
Not much to say, Vundle is based on the GIT architecture, so, which is a must.
Download Msysgit and install it (see Http://drupalchina.cn/content/windows-xi-tong-xia-gitan-zhuang-tu-jie) and Git The cmd path and bin path are added to the environment variable path, as
D:\Program Files\Git\cmd
D:\Program Files\Git\bin
Then run cmd
--version
curl --version
If you see version information for git and curl, the installation is successful.
Step Two: Install Vundle
After the GIT installation is complete, from the official website clone Vundle to the Vim installation path, such as
git clone https://github.com/gmarik/vundle D:\Vim\vimfiles\bundle\vundle
At this point, the directory structure of Vim should be as follows
D:Vim
+\---|vim73
+\---|vimfiles
+---bundle
+---vundle
+---autoload
Step Three: Configure Vundle
Add the following configuration to the _VIMRC file
The =====vundle plug-in management tool =====
FileType off
"The path to Vundle is specified here
Set rtp+= $VIM/vimfiles/bundle/vundle/
Call VUNDLE#RC (' $VIM/vimfiles/bundle/')
Bundle ' Gmarik/vundle '
FileType plugin indent on
"Original repos on GitHub
Bundle ' Mattn/zencoding-vim '
Bundle ' Drmingdrmer/xptemplate '
"Vim-scripts Repos
Bundle ' Vim-markdown '
filetype plugin indent on "required!
Fourth step: Enjoy
Vundle Common directives
:BundleList 列出已经安装的插件
:BundleInstall 安装所有配置文件中的插件
:BundleInstall! 更新所有插件
:BundleSearch 搜索插件
:BundleClean! 根据配置文件删除插件
Original: http://lab.yqc.im/Windows-vim-vundle.html
Windows Vim Configuration plugin Vundle