This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. {{howhard>2}} ===== Build VIM on centos 6 ,7 ===== <wrap left center tip half em>You should remove all vim packages before the following.</wrap> <wrap em>lua-devel package does not exist in 8.0.1905</wrap> <sxh bash> yum remove vim </sxh> ==== Install centos compilers ==== <sxh bash>yum groupinstall 'Development tools'</sxh> ==== Requirements ==== <sxh bash>yum install -y ncurses ncurses-devel lua-devel.x86_64</sxh> === Build & Install === <sxh bash> 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 </sxh> === Cleanup to recompile === <sxh bash>make distclean</sxh>