Last active
January 1, 2016 13:09
-
-
Save kylefritz/8149778 to your computer and use it in GitHub Desktop.
pathrc file
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
| # | |
| # 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