以前關於gvim的博客中提到的不少插件安裝比較繁瑣,這一篇來介紹一下gvim管理插件的插件--vundle的安裝以及使用,讓givm的插件安裝更加的簡單git
首先給出vundle的git地址github
https://github.com/VundleVim/Vundle.vim/wiki/Vundle-for-Windowsvim
1.提早準備windows
首先咱們須要在windows下安裝git,順便說一句git真的比svn好用bash
window git下載地址以下curl
https://git-scm.com/download/winsvn
這個版本已經按照博文中說的自帶curlui
2.打開git bashurl
運行以下命令spa
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
將git克隆到系統當前用戶目錄的.vim文件夾下,通常會是C:/Users/username/.vim/bundle/Vundle.vim
3.打開_vimrc,加入以下配置
"vundle start
set nocompatible " be iMproved, required
filetype off " required
" 將Vundle插件的目錄添加到gvim的運行時變量中
set rtp+=$HOME/.vim/bundle/Vundle.vim/
call vundle#begin('$USERPROFILE/.vim/bundle/') " All of your Plugins must be added before the following line Plugin 'VundleVim/Vundle.vim' Plugin 'scrooloose/nerdtree' call vundle#end() " required filetype plugin indent on " required "vundle end
4.在
call vundle#end() " required
和
call vundle#end() " required
加入你要安裝的插件,這裏我安裝了以前提到到NerdTree
Plugin 'scrooloose/nerdtree'
5.在givm命令模式中運行以下命令
:PluginInstall
安裝成功會提示以下
6.在_vimrc文件中添加對應的配置就能夠使用了
"autocmd vimenter * NERDTree map <F2> :NERDTreeToggle<CR> "nerdtree end
7.完成圖,其餘插件的安裝大同小異