Skip to content

Instantly share code, notes, and snippets.

@muminoff
Last active December 14, 2015 18:49
Show Gist options
  • Save muminoff/5131947 to your computer and use it in GitHub Desktop.
Save muminoff/5131947 to your computer and use it in GitHub Desktop.

Vim compile with Python and Ruby support

Ubuntu 12.04.2 LTS x64

Get dependencies

sudo apt-get install wget curl git subversion python-setuptools \
python-dev libncurses5-dev ruby ruby-dev rake

Download vim

wget http://ftp.kaist.ac.kr/vim/unix/vim-7.3.tar.bz2

Configure with necessary stuff

./configure --prefix=/usr/local \
    --enable-gui=no \
    --without-x \
    --disable-nls \
    --enable-multibyte \
    --with-tlib=ncurses \
    --enable-pythoninterp \
    --enable-rubyinterp \
    --with-features=huge

Make and install

make && sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment