Skip to content

Instantly share code, notes, and snippets.

@sfate
Forked from naaman/vim-on-heroku.sh
Created June 7, 2012 14:39
Show Gist options
  • Save sfate/2889158 to your computer and use it in GitHub Desktop.
Save sfate/2889158 to your computer and use it in GitHub Desktop.

Revisions

  1. naaman revised this gist Jun 1, 2012. 1 changed file with 1 addition and 2 deletions.
    3 changes: 1 addition & 2 deletions vim-on-heroku.sh
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,4 @@
    #!/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
    bash
    export PATH=$PATH:/app/vim/bin
  2. naaman revised this gist Jun 1, 2012. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions vim-on-heroku.sh
    Original file line number Diff line number Diff line change
    @@ -2,3 +2,4 @@
    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
    bash
  3. naaman revised this gist Jun 1, 2012. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion vim-on-heroku.sh
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,4 @@
    #!/bin/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
  4. naaman revised this gist Jun 1, 2012. 1 changed file with 1 addition and 2 deletions.
    3 changes: 1 addition & 2 deletions vim-on-heroku.sh
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,4 @@
    #!/bin/sh
    heroku run 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
    export PATH=$PATH:/app/vim/bin
  5. naaman revised this gist Jun 1, 2012. 2 changed files with 5 additions and 5 deletions.
    5 changes: 0 additions & 5 deletions vim-on-heroku.md
    Original file line number Diff line number Diff line change
    @@ -1,5 +0,0 @@
    `heroku run 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`
    `vim somefile`
    5 changes: 5 additions & 0 deletions vim-on-heroku.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,5 @@
    #!/bin/sh
    heroku run 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
  6. naaman created this gist Jun 1, 2012.
    5 changes: 5 additions & 0 deletions vim-on-heroku.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,5 @@
    `heroku run 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`
    `vim somefile`