Skip to content

Instantly share code, notes, and snippets.

@matsubo
Created April 9, 2013 03:20
Show Gist options
  • Save matsubo/5342696 to your computer and use it in GitHub Desktop.
Save matsubo/5342696 to your computer and use it in GitHub Desktop.
#!/bin/sh
sudo apt-get update
sudo apt-get install mercurial libncurses5-dev -y
src_dir=~/archive/
if [ ! -d $src_dir ];then
mkdir $src_dir
fi
cd $src_dir
hg clone https://vim.googlecode.com/hg/ vim
cd vim/src
./configure --enable-multibyte --enable-xim --enable-fontset --disable-selinux --with-features=huge --enable-pythoninterp --with-python-config-dir=/usr/local/lib/python2.7/config
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment