Last active
December 18, 2015 16:28
-
-
Save cbednarski/5811195 to your computer and use it in GitHub Desktop.
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
| ZSH=$HOME/.oh-my-zsh | |
| ZSH_THEME="robbyrussell" | |
| plugins=(git) | |
| source $ZSH/oh-my-zsh.sh | |
| export EDITOR=vim | |
| # Java | |
| export JAVA_HOME=`/usr/libexec/java_home -v 1.6` | |
| #export JAVA_HOME=`/usr/libexec/java_home -v 1.7` | |
| # Load brew binaries before loading system | |
| export PATH="/usr/local/bin:$PATH" | |
| # vmware cli tools | |
| export PATH="$PATH:/Applications/VMware Fusion.app/Contents/Library" | |
| # phpenv -- needs to come in before rbenv so rbenv will take precedence | |
| export PATH="$HOME/.phpenv/bin:$PATH" | |
| eval "$(phpenv init - zsh)" | |
| # rbenv | |
| export PATH="$HOME/.rbenv/bin:$PATH" | |
| eval "$(rbenv init - zsh)" | |
| # node.js | |
| export PATH=$PATH:/usr/local/share/npm/bin | |
| # bash scripts | |
| export PATH=$PATH:$HOME/code/bash/ | |
| # AWS IAM tools | |
| export AWS_IAM_HOME=$HOME/code/IAMCli-1.5.0/bin | |
| export PATH=$PATH:$AWS_IAM_HOME | |
| export AWS_CREDENTIAL_FILE=$HOME/.ssh/aws-credential | |
| export CLIENT_CONFIG_FILE=$HOME/.aws-client-config |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment