Skip to content

Instantly share code, notes, and snippets.

@kylefritz
Last active January 1, 2016 13:09
Show Gist options
  • Select an option

  • Save kylefritz/8149778 to your computer and use it in GitHub Desktop.

Select an option

Save kylefritz/8149778 to your computer and use it in GitHub Desktop.
pathrc file
#
# PATH
#
# current directory bin (and for bundler)
PATH="./bin:./.bundle/bin"
# my local bin
PATH+=":$HOME/local/bin"
# homebrew ruby gems bin
PATH+=":/usr/local/opt/ruby/bin"
# npm bin
PATH+=":/usr/local/share/npm/bin"
# postgres app bin (pg_conf, pg_dump)
PATH+=":/Applications/Postgres.app/Contents/Versions/9.3/bin"
# Heroku Toolbelt
PATH+=":/usr/local/heroku/bin"
# homebrew
PATH+=":/usr/local/bin"
# linux standards
PATH+=":/usr/bin:/bin:/usr/sbin:/sbin"
export PATH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment