Last active
August 29, 2015 14:03
-
-
Save qguv/ffaa67fca814cf0f49ec to your computer and use it in GitHub Desktop.
Roll your own vim
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
# replace --with-python-config-dir and --with-lua-prefix with a system-specific directory | |
mkdir -p ~/build | |
cd ~/build | |
hg clone https://vim.googlecode.com/hg/ vim | |
cd vim | |
hg pull | |
hg update | |
# might also need --with-python-config-dir=/usr/lib64/python2.6/config | |
./configure --prefix=/usr/local --with-features=huge --enable-pythoninterp --with-lua-prefix=/usr --enable-luainterp | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment