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. export PAGER=less
  12. ## colour ls
  13. export CLICOLOR=1
  14. export LSCOLORS=gxfxcxdxbxegedabagacad
  15. export CVSROOT=:pserver:weiyi@cvs:/usr/cvsroot
  16. export PATH=/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:~/bin:$PATH
  17. export PATH=/usr/local/git/bin:/usr/local/php/bin:/usr/local/php53/bin:/usr/local/apache2/bin:/usr/local/mysql/bin:/usr/lib/firefox-3.6:/jails/alcatraz/usr/local/www/oars/libraries/lithium/console:$PATH
  18. export JAVA_HOME=/usr/local/java
  19. export ANT_HOME=/Developer/Java/Ant
  20. export CATALINA_HOME=/usr/local/tomcat
  21. export CLASSPATH=/usr/local/cruisecontrol/lib
  22. export FISHEYE_OPTS="-Xms128m -Xmx512m -XX:MaxPermSize=256m"
  23. export FISHEYE_INST=/var/crucible
  24. # for esxi perl stuff to not fail
  25. export PERL_LWP_SSL_VERIFY_HOSTNAME=0
  26. # Move Homebrew temp files to ramdisk (build directory)
  27. #export HOMEBREW_TEMP=/Volumes/RamDisk
  28. export DISPLAY=localhost:10.0
  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