Skip to content

Instantly share code, notes, and snippets.

@brucewoodward
Created July 30, 2017 09:23
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 brucewoodward/0109e6b7e58800c3a45a66c2d4c1aa52 to your computer and use it in GitHub Desktop.
Save brucewoodward/0109e6b7e58800c3a45a66c2d4c1aa52 to your computer and use it in GitHub Desktop.
Installing vim from github
mkdir ~/local
cd /tmp
git clone https://github.com/vim/vim
cd vim
./configure --prefix=$HOME/local --enable-terminal=yes && make install
oldPATH="$PATH"
PATH=$HOME/local/bin:$PATH
type vim
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment