Created
July 30, 2017 09:23
-
-
Save brucewoodward/0109e6b7e58800c3a45a66c2d4c1aa52 to your computer and use it in GitHub Desktop.
Installing vim from github
This file contains 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
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