Created
August 21, 2015 23:23
-
-
Save herrbischoff/bd815776c952ef3a33fb to your computer and use it in GitHub Desktop.
Compile sane Vim from source on Linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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