-
-
Save DavidMikeSimon/d4ab3dffdfd35b687e4ebc6adf6da19b to your computer and use it in GitHub Desktop.
vim on heroku
This file contains hidden or 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
| set -e | |
| if [[ ! -d ~/vim ]]; then | |
| echo "Downloading vim..." | |
| mkdir ~/vim | |
| cd ~/vim | |
| # Staically linked vim version compiled from https://github.com/ericpruitt/static-vim | |
| # Compiled on Jul 20 2017 | |
| curl -s -S -o vim-static.tar.gz 'https://s3.amazonaws.com/bengoa/vim-static.tar.gz' | |
| echo "8f5d8dfc6006570bf223b1fb81ca63a2 vim-static.tar.gz" | md5sum -cw | |
| tar xf vim-static.tar.gz | |
| cd ~ | |
| fi | |
| ~/vim/vim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment