.bash_profile 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. if [ -n "$BASH_VERSION" ]; then
  2. # include .bashrc if it exists
  3. if [ -f "$HOME/.bashrc" ]; then
  4. . "$HOME/.bashrc"
  5. fi
  6. fi
  7. # set PATHH so it includes user's private bin if it exists
  8. if [ -d "$HOME/bin" ] ; then
  9. PATH="$HOME/bin:$PATH"
  10. fi
  11. PATH=$PATH:~/drush
  12. [[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function
  13. # Colors
  14. export TERM=xterm-color
  15. export GREP_OPTIONS='--color=auto' GREP_COLOR='1;32'
  16. export CLICOLOR=1
  17. export LSCOLORS=ExGxFxDxCxHxHxCbCeEbEb
  18. export COLOR_NC='\033[0m' # No Color
  19. export COLOR_WHITE='\033[1;37m'
  20. export COLOR_BLACK='\033[0;30m'
  21. export COLOR_BLUE='\033[0;34m'
  22. export COLOR_LIGHT_BLUE='\033[1;34m'
  23. export COLOR_GREEN='\033[0;32m'
  24. export COLOR_LIGHT_GREEN='\033[1;32m'
  25. export COLOR_CYAN='\033[0;36m'
  26. export COLOR_LIGHT_CYAN='\033[1;36m'
  27. export COLOR_RED='\033[0;31m'
  28. export COLOR_LIGHT_RED='\033[1;31m'
  29. export COLOR_PURPLE='\033[0;35m'
  30. export COLOR_LIGHT_PURPLE='\033[1;35m'
  31. export COLOR_BROWN='\033[0;33m'
  32. export COLOR_YELLOW='\033[1;33m'
  33. export COLOR_GRAY='\033[1;30m'
  34. export COLOR_LIGHT_GRAY='\033[0;37m'