Skip to content

Instantly share code, notes, and snippets.

@solar
Created October 12, 2012 05:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save solar/3877531 to your computer and use it in GitHub Desktop.
Save solar/3877531 to your computer and use it in GitHub Desktop.
Install vim 7.3
# install vim
curl -L ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2 | tar jx
cd vim73
./configure --prefix=/usr/local/vim/7.3 --enable-multibyte --with-features=huge
make
sudo make install
sudo alternatives --install /usr/local/bin/vim vim /usr/local/vim/7.3/bin/vim 070300 \
--slave /usr/local/bin/view view /usr/local/vim/7.3/bin/view
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment