Windows vim using the Vundle management plugin
First install Gvim and Git, add the C:\Program files\git\cmd to the PATH environment variable, and then execute it in cmd:
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
Add the following configuration in the _VIMRC file:
"Configure Vundle Start" starts with the path of the Vundle must be configured Set nocompatiblefiletype off Vundle: set rtp+= $HOME/.vim/bundle/ Vundle/vundle.vim "plug-in Installation path: Call vundle#begin (' $HOME/.vim/bundle/vundle/vundle.vim ')" Use Vundle to manage vundlebundle ' gmarik/vundle ' "Powerline plugins status bar enhancements show bundle ' Lokaltog/vim-powerline '" Vim has a status bar plus powline There are two status bars set laststatus=2set t_co=256let g:powline_symbols= ' fancy ' call vundle#end () "Vundle configuration must open plugin Filetype plugin indent on" operating instructions: " Install Vundle" git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle " Plugins for non-vim-scripts warehouses on the GitHub website, fill in the following format " Bundle tpope/vim-fugitive " In the Vim-scripts warehouse on the GitHub website, fill in the form " Bundle ' Fuzzyfinder ' " non-above two cases, fill in the form below, and use git source directly " Bundle ' git://git.wincent.com/command-t.git ' Specify plugins in the local git repository Bundle ' File:///Users/gmarik/path/to/plugin ' " Common Commands" :bundlelist - Display plugin list " :BundleInstall - install plugin"  : bundleinstall! - Update Plugin " :BundleClean - clean unwanted plugins" Configuration Vundle End
Add the required plugin in the following format, and then execute the corresponding command in Gvim to install the plugin automatically.
Bundle ' Fuzzyfinder '
This article is from the "Hello3389 blog" blog, make sure to keep this source http://hello3389.blog.51cto.com/1171990/1720481
Windows vim using the Vundle management plugin