-
-
Save rtluckie/e4e08866aa9ef5ce463a to your computer and use it in GitHub Desktop.
VIM - Build from source
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
# 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