Skip to content

Instantly share code, notes, and snippets.

@bolasblack
Created June 13, 2014 17:25
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 bolasblack/4c91454bc9100513f820 to your computer and use it in GitHub Desktop.
Save bolasblack/4c91454bc9100513f820 to your computer and use it in GitHub Desktop.
build lua support vim on ubuntu
#!/bin/bash -e
sudo apt-get install libncurses5-dev python-dev ruby-dev lua5.2 liblua5.2-dev
./configure \
--enable-fontset \
--disable-xsmp \
--enable-cscope \
--enable-multibyte \
--enable-python3interp \
--enable-rubyinterp=dynamic \
--enable-pythoninterp \
--enable-perlinterp=dynamic \
--enable-luainterp \
--with-lua-prefix=/usr \
--with-features=huge \
--with-compiledby=c4605 \
--with-modified-by=c4605
make -j2
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment