git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle,下载到本地
gvim ~/.vimrc
1 set nocompatible " be iMproved 2 filetype off " required! 3 4 set rtp+=~/.vim/bundle/vundle/ 5 call vundle#rc() 6 7 Bundle 'gmarik/vundle' 8 9 Bundle 'a.vim'10 Bundle 'molokai'11 Bundle 'The-NERD-tree'12 Bundle 'minibufexpl.vim'13 Bundle 'Lokaltog/vim-powerline'14 Bundle 'Tagbar'15 Bundle 'AutoComplPop'16 Bundle 'Auto-Pairs'17 Bundle 'ctrlp.vim'18 19 "这个需要7.420 "Bundle 'Valloric/YouCompleteMe'21 22 filetype plugin indent on " required!23 24 "自定义的配置文件路径25 set runtimepath+=~/vimConfig
执行BundleInstall即可