DO 更新VIM - aispin/mamboer.github.io GitHub Wiki
Installing latest Vim on CentOS from source
http://www.fullybaked.co.uk/articles/installing-latest-vim-on-centos-from-source
yum groupinstall 'Development tools'
yum install ncurses ncurses-devel
cd /usr/local/src
wget ftp://ftp.vim.org/pub/vim/unix/vim-7.4.tar.bz2
tar -xjf vim-7.4.tar.bz2
cd vim74
./configure --prefix=/usr --with-features=huge --enable-rubyinterp --enable-pythoninterp
make && make install