Skip to content

Instantly share code, notes, and snippets.

@rtluckie
Last active August 29, 2015 14:10
Show Gist options
  • Save rtluckie/e4e08866aa9ef5ce463a to your computer and use it in GitHub Desktop.
Save rtluckie/e4e08866aa9ef5ce463a to your computer and use it in GitHub Desktop.
VIM - Build from source
# tested on osx 10.10.1 (14B25)
mkdir ~/tmp
hg clone https://code.google.com/p/vim/ ~/tmp/vim
cd ~/tmp/vim
./configure \
--prefix=$HOME/.local \
--enable-fail-if-missing \
--with-features=huge \
--enable-multibyte \
--enable-rubyinterp \
--enable-pythoninterp \
--enable-perlinterp \
--enable-luainterp \
--with-luajit \
--with-lua-prefix=/usr/local/Cellar/luajit/2.0.4 \
--enable-gui=gtk2 \
--enable-cscope
mkdir ${HOME}/.local/share/vim/vim/vim74
make VIMRUNTIMEDIR=${HOME}/.local/share/vim/vim/vim74
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment