1.如果你没有安装git的话,需要sudo apt-get install git
2.git安装完成以后, git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
可能速度会有些慢,而且中间出现错误,但是肯定能下载的
3.然后在自己的配置文件中加入下面的语句:
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
4.例如在自己的配置文件中加入自己想要安装的插件:
Bundle 'L9
Bundle 'FuzzyFinder'
Bundle 'buferexplorer.zip'
Bundle 'Mark'
Bundle 'nerdtress'
看~/.vim/bundle/vundle/下文件夹叫什么,就写什么
Bundle 'vim-powerline' 看~/.vim/bundle/vundle/下文件夹叫什么,就写什么
Bundle 'AutoComplPop'
5.然后命令行输入$ vim
//重要第一步 缺一不可
在vim中输入 :BundleInstall。插件就会自动安装 //重要第一步 缺一不可
输入 :BundleInstall!。插件就会自动升级 //重要第一步 缺一不可