Skip to content

Instantly share code, notes, and snippets.

@herrbischoff
Created August 21, 2015 23:23
Show Gist options
  • Save herrbischoff/bd815776c952ef3a33fb to your computer and use it in GitHub Desktop.
Save herrbischoff/bd815776c952ef3a33fb to your computer and use it in GitHub Desktop.
Compile sane Vim from source on Linux
aptitude remove vim vim-runtime gvim
aptitude build-dep vim
git clone https://github.com/vim/vim.git
cd vim/src
./configure --with-features=huge \
--enable-multibyte \
--enable-rubyinterp \
--enable-pythoninterp \
--with-python-config-dir=/usr/lib/python2.7/config \
--enable-perlinterp \
--enable-luainterp \
--disable-gui
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment