Skip to content

Instantly share code, notes, and snippets.

@dimitardanailov
Last active October 28, 2015 08:53
Show Gist options
  • Save dimitardanailov/c74d89d534ead0af1c3d to your computer and use it in GitHub Desktop.
Save dimitardanailov/c74d89d534ead0af1c3d to your computer and use it in GitHub Desktop.
Step for installation of Vim 7.4 on Debian.
#!/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