Created
April 26, 2014 21:50
-
-
Save wonkoderverstaendige/11332052 to your computer and use it in GitHub Desktop.
Install vim with python support
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
# From mbrochh | |
sudo apt-get build-dep vim | |
sudo apt-get install mercurial | |
hg clone https://vim.googlecode.com/hg/ vim | |
cd vim/src | |
./configure --enable-pythoninterp --with-features=huge --prefix=$HOME/opt/vim | |
make && make install | |
mkdir -p $HOME/bin | |
cd $HOME/bin | |
ln -s $HOME/opt/vim/bin/vim | |
# Make sure /home/[me]/bin is added to PATH! | |
# export PATH=$PATH:$HOME/bin | |
which vim | |
sudo apt-get install gtk2-engines-pixbuf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment