zshenv 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. ## csv login
  12. export CVSROOT=:pserver:weiyi@cvs:/usr/cvsroot
  13. ## paths
  14. export PATH=/usr/sbin:/usr/bin:~/bin:$PATH
  15. export PATH=/usr/lib/firefox-3.6:$PATH
  16. export PATH=/usr/local/bin:/usr/local/git/bin:$PATH
  17. export PATH=/usr/local/php/bin:/usr/local/php53/bin:$PATH
  18. export PATH=/usr/local/apache2/bin:/usr/local/mysql/bin:$PATH
  19. export PATH=/opt/local/bin:/opt/local/sbin:$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. # for esxi perl stuff to not fail
  26. export PERL_LWP_SSL_VERIFY_HOSTNAME=0
  27. # Homebrew for Mac: move temp files to ramdisk (build directory)
  28. #export HOMEBREW_TEMP=/Volumes/RamDisk
  29. # Add /usr/local manpages
  30. if [[ -d /usr/local/share/man ]];then
  31. MANPATH=$MANPATH:/usr/local/share/man
  32. fi
  33. if [[ -d /usr/local/man ]];then
  34. MANPATH=$MANPATH:/usr/local/man
  35. fi
  36. export MANPATH