Skip to content

Instantly share code, notes, and snippets.

@remyhunt
Created December 23, 2016 00:53
Show Gist options
  • Save remyhunt/83d059fe2645ada0d98f61689c0e31a2 to your computer and use it in GitHub Desktop.
Save remyhunt/83d059fe2645ada0d98f61689c0e31a2 to your computer and use it in GitHub Desktop.
crispy bash profile
PATH="/Library/Frameworks/Python.framework/Versions/3.4/bin:${PATH}"
PATH="/usr/local/sbin:$PATH"
PATH="/usr/local/Cellar/ruby/2.1.5/lib/ruby/gems/2.1.0/gems:$PATH"
alias frash=". ~/.bash_profile"
export PATH
export PATH=/usr/local/bin:$PATH
#MAKE ME PRETTY
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
# Added by canvas-lms setup-development script
# This adds the brew bin to your PATH
if $(which brew >/dev/null 2>&1); then
export PATH="$PATH:$(brew --prefix)/bin"
fi
# Added by the canvas-lms setup script
# These settings make chruby work
# See https://github.com/postmodern/chruby
[ -f /usr/local/share/chruby/chruby.sh ] && . /usr/local/share/chruby/chruby.sh
[ -f /usr/local/share/chruby/auto.sh ] && . /usr/local/share/chruby/auto.sh
[ -f /usr/local/opt/chruby/share/chruby/chruby.sh ] && . /usr/local/opt/chruby/share/chruby/chruby.sh
[ -f /usr/local/opt/chruby/share/chruby/auto.sh ] && . /usr/local/opt/chruby/share/chruby/auto.sh
export PATH="$PATH":~/.node/bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment