- 编译vim源码
(1)安装依赖
sudo apt-get install python-dev python3-dev ruby-dev libx11-dev libgtk2.0-dev libgtk-3-dev libncurses5-dev
(2)获取vim源码
git clone git@github.com:vim/vim.git
(3)编译vim
cd vim/
./configure --with-features=huge --enable-pythoninterp --enable-rubyinterp --enable-luainterp --enable-perlinterp --with-python-config-dir=/usr/lib/python2.7/config/ --enable-gui=gtk2 --enable-cscope --prefix=/usr
make
make install
- 安装vundle管理插件
(1)```shell git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
(2)修改配置.vimrc
http://blog.****.net/wooin/article/details/1858917