Skip to content

Instantly share code, notes, and snippets.

@partkyle
Created July 17, 2012 00:33
Show Gist options
  • Save partkyle/3126137 to your computer and use it in GitHub Desktop.
Save partkyle/3126137 to your computer and use it in GitHub Desktop.
VM Setup
#!/bin/sh
if [ -z "$VIM_VERSION"]; then
VIM_VERSION=v7-3-603
fi
hg clone https://vim.googlecode.com/hg/ vim
cd vim
hg pull
hg update
hg co v7-3-603
./configure --without-x --with-features=huge --with-tlib=ncurses --enable-multibyte --with-mac-arch=x86_64 --enable-pythoninterp --enable-rubyinterp --enable-tclinterp --enable-perlinterp --prefix="/usr/local/stow/vim-$VIM_VERSION"
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment