This is an old revision of the document!
Difficulty

Easy
Build VIM on centos 6 ,7
You should remove all vim packages before the following.
Install centos compilers
yum groupinstall 'Development tools'
Requirements
yum install ncurses ncurses-devel lua-devel.x86_64
Build & Install
git clone https://github.com/vim/vim.git cd vim/src ./configure --prefix=/usr --with-features=huge --enable-rubyinterp --enable-pythoninterp --enable-luainterp make make install
Cleanup to recompile
make distclean