Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save netsmertia/8217295 to your computer and use it in GitHub Desktop.
Save netsmertia/8217295 to your computer and use it in GitHub Desktop.
sudo apt-get install liblua5.1-dev
sudo mkdir /usr/include/lua5.1/include/
sudo cp /usr/include/lua5.1/* /usr/include/lua5.1/include/
sudo ln -s /usr/lib/x86_64-linux-gnu/liblua5.1.so /usr/local/lib/liblua.so
hg clone https://code.google.com/p/vim/
cd vim
./configure --with-features=huge \
--enable-perlinterp \
--enable-rubyinterp \
--enable-pythoninterp=yes \
--with-python-config-dir=/usr/lib/python2.7/config-x86_64-linux-gnu \
--enable-multibyte \
--enable-fontset \
--enable-gui=gtk2 \
--disable-netbeans \
--enable-luainterp=yes \
--with-lua-prefix=/usr/include/lua5.1 \
--enable-cscope \
--enable-largefile \
--prefix=/usr
make VIMRUNTIMEDIR=/usr/share/vim/vim74
sudo checkinstall
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment