Last active
October 16, 2024 17:15
-
Star
(149)
You must be signed in to star a gist -
Fork
(36)
You must be signed in to fork a gist
-
-
Save dvdbng/7375821b20f189c189ab1bd29392c98e to your computer and use it in GitHub Desktop.
Run vim in heroku updated 2017
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 ~/vim | |
cd ~/vim | |
# Staically linked vim version compiled from https://github.com/ericpruitt/static-vim | |
# Compiled on Jul 20 2017 | |
curl 'https://s3.amazonaws.com/bengoa/vim-static.tar.gz' | tar -xz | |
export VIMRUNTIME="$HOME/vim/runtime" | |
export PATH="$HOME/vim:$PATH" | |
cd - |
Sweet! Thanks :)
Thank you !
Sweet! Thanks
Many thanks!
Works!
Hi David! 😍
I just used this today, thanks for sharing! =)
I made a Heroku cli plugin based on this gist that will allow one to use vim in a Heroku dyno via a heroku vim
command: https://github.com/jasonheecs/heroku-vim
This worked for me! I had the same issue about loading shared object files, I came from this link: https://gist.github.com/btakita/7853541
thanks
I made a Heroku cli plugin based on this gist that will allow one to use vim in a Heroku dyno via a
heroku vim
command: github.com/jasonheecs/heroku-vim
This worked thanks
awesome
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Getting an error where all the files on my one-off dyno are being overwritten when I run this script (in the heroku bash session). Is anyone else having this issue?