.bash_profile 606 B

123456789101112131415161718
  1. export PATH="/usr/local/bin:/usr/local/sbin:~/bin:/usr/local/share/npm/bin:$PATH"
  2. export PATH="/usr/local/git/bin:$PATH"
  3. export PATH="$HOME/bin:$PATH"
  4. export EDITOR="/usr/local/bin/mate -w"
  5. export PATH=$PATH:/usr/local/mysql/bin
  6. alias mysql=/usr/local/mysql/bin/mysql
  7. alias mysqladmin=/usr/local/mysql/bin/mysqladmin
  8. set -o vi
  9. export CLICOLOR=1
  10. export GREP_OPTIONS='--color=auto'
  11. export LSCOLORS=GxFxCxDxBxegedabagaced
  12. alias ls='ls -GFh'
  13. if [ -f ~/.bashrc ]; then
  14. source ~/.bashrc
  15. fi
  16. [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*