Skip to content

Instantly share code, notes, and snippets.

@shiva
Created June 28, 2013 22:03
Show Gist options
  • Save shiva/5888496 to your computer and use it in GitHub Desktop.
Save shiva/5888496 to your computer and use it in GitHub Desktop.
Compiling VIM from source, with python and ruby interpreter support
sudo apt-get install libx11-dev libxt-dev python python2.7-dev
hg clone https://vim.googlecode.com/hg/ vim_source && cd vim_source && \
./configure --disable-nls --enable-multibyte --with-tlib=ncurses \
--enable-pythoninterp --enable-rubyinterp --with-features=huge && \
make -j 3 && sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment