LoginSignup
1
1

More than 5 years have passed since last update.

Heroku adding VIM

Posted at

Step 1 Create the script

vi vim-on-heroku.sh
'#!/usr/bin/env bash
curl https://s3.amazonaws.com/heroku-jvm-buildpack-vi/vim-7.3.tar.gz --output vim.tar.gz
mkdir vim && tar xzvf vim.tar.gz -C vim
export PATH=$PATH:/app/vim/bin

Step 2 Send file to Heroku

git add .
git commit -m "add VIM"

In Heroku
? heroku run bash
? . vim-on-heroku.sh

vim

Reference:
https://gist.github.com/sfate/2889158#file-vim-on-heroku-sh

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1