zshenv 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #
  2. # /etc/zshenv is sourced on all invocations of the
  3. # shell, unless the -f option is set. It should
  4. # contain commands to set the command search path,
  5. # plus other important environment variables.
  6. # .zshenv should not contain commands that produce
  7. # output or assume the shell is attached to a tty.
  8. #
  9. ## don't close less when I am done reading
  10. export LESS='-eirMX'
  11. ## paths
  12. export PATH=/usr/sbin:/usr/bin:~/bin:$PATH
  13. export PATH=/usr/lib/firefox-3.6:$PATH
  14. export PATH=/usr/local/bin:/usr/local/git/bin:$PATH
  15. export PATH=/usr/local/php/bin:/usr/local/php53/bin:$PATH
  16. export PATH=/usr/local/apache2/bin:$PATH
  17. export PATH=/usr/local/mysql/bin:$PATH
  18. export PATH=/opt/local/bin:/opt/local/sbin:$PATH
  19. export PATH=$HOME/.rvm/bin:$PATH
  20. export PATH=/jails/alcatraz/usr/local/www/oars/libraries/lithium/console:$PATH
  21. export JAVA_HOME=/usr/local/java
  22. export ANT_HOME=/Developer/Java/Ant
  23. export CATALINA_HOME=/usr/local/tomcat
  24. export CLASSPATH=/usr/local/cruisecontrol/lib
  25. # Add /usr/local manpages
  26. if [[ -d /usr/local/share/man ]];then
  27. MANPATH=/usr/local/share/man:$MANPATH
  28. fi
  29. if [[ -d /usr/local/man ]];then
  30. MANPATH=/usr/local/man:$MANPATH
  31. fi
  32. export MANPATH
  33. ## csv login
  34. export CVSROOT=:pserver:weiyi@cvs:/usr/cvsroot
  35. # for esxi perl stuff to not fail
  36. export PERL_LWP_SSL_VERIFY_HOSTNAME=0
  37. # Homebrew for Mac: move temp files to ramdisk (build directory)
  38. #export HOMEBREW_TEMP=/Volumes/RamDisk