Last active
September 12, 2016 22:39
-
-
Save daleobrien/5972550 to your computer and use it in GitHub Desktop.
Install a later version of VIM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo yum -y install hg ncurses-devel python-devel gcc-c++ | |
# hg clone https://vim.googlecode.com/hg/ vim | |
git clone https://github.com/vim/vim.git vim | |
cd vim | |
hg update default | |
./configure --with-features=huge \ | |
--disable-selinux \ | |
--enable-multibyte \ | |
--enable-rubyinterp \ | |
--enable-pythoninterp \ | |
--enable-perlinterp \ | |
--enable-luainterp \ | |
--enable-gui=no \ | |
--enable-cscope \ | |
--with-python-config-dir=/usr/lib/python2.7/config-x86_64-linux-gnu \ | |
--prefix=/usr | |
make -j16 | |
sudo make install | |
cd ../../ | |
rm -rf vim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment