Last active
October 28, 2015 08:53
-
-
Save dimitardanailov/c74d89d534ead0af1c3d to your computer and use it in GitHub Desktop.
Step for installation of Vim 7.4 on Debian.
This file contains hidden or 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
#!/bin/sh | |
# Source: http://linuxg.net/how-to-install-vim-7-4-on-debian-based-systems-from-source/ | |
sudo apt-get -y install ncurses-dev build-essential mercurial | |
hg clone https://vim.googlecode.com/hg/ vim | |
cd vim/src | |
make distclean | |
./configure --with-features=huge --enable-pythoninterp --enable-rubyinterp | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment