Skip to content

Instantly share code, notes, and snippets.

@qguv
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qguv/ffaa67fca814cf0f49ec to your computer and use it in GitHub Desktop.
Save qguv/ffaa67fca814cf0f49ec to your computer and use it in GitHub Desktop.
Roll your own vim
# 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