Skip to content

Instantly share code, notes, and snippets.

@daleobrien
Last active September 12, 2016 22:39
Show Gist options
  • Save daleobrien/5972550 to your computer and use it in GitHub Desktop.
Save daleobrien/5972550 to your computer and use it in GitHub Desktop.
Install a later version of VIM
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