zshenv 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. # Move Homebrew temp files to ramdisk (build directory)
  25. #export HOMEBREW_TEMP=/Volumes/RamDisk
  26. export DISPLAY=localhost:10.0
  27. # Add /usr/local manpages
  28. if [[ -d /usr/local/share/man ]];then
  29. MANPATH=$MANPATH:/usr/local/share/man
  30. fi
  31. if [[ -d /usr/local/man ]];then
  32. MANPATH=$MANPATH:/usr/local/man
  33. fi
  34. export MANPATH