Skip to content

Instantly share code, notes, and snippets.

@jmervine
Last active December 23, 2015 23:29
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 jmervine/6710140 to your computer and use it in GitHub Desktop.
Save jmervine/6710140 to your computer and use it in GitHub Desktop.
Install vim74 on *nix* Tested on:- CentOS 6* Requirements:- ncurses-devel (on centos)
#!/usr/bin/env bash
VERSION=7.4
set -xue
cd /tmp
rm -rf vim*
wget ftp://ftp.vim.org/pub/vim/unix/vim-$VERSION.tar.bz2
tar -xjf vim-$VERSION.tar.bz2
cd vim*
./configure
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment