zshenv 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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='-X -e'
  11. export PAGER=less
  12. ## colour ls
  13. export CLICOLOR=1
  14. export LSCOLORS=gxfxcxdxbxegedabagacad
  15. export CVSROOT=:pserver:releng@cvs:/usr/cvsroot
  16. export PATH=/opt/local/bin:/opt/local/sbin:/usr/local/git/bin:/usr/local/php/bin:/usr/local/apache2/bin:/usr/local/mysql/bin:/usr/local/bin:$PATH
  17. export JAVA_HOME=/usr/local/java
  18. export ANT_HOME=/Developer/Java/Ant
  19. export CATALINA_HOME=/usr/local/tomcat
  20. export CLASSPATH=/usr/local/cruisecontrol/lib
  21. export FISHEYE_OPTS="-Xms128m -Xmx512m -XX:MaxPermSize=256m"
  22. export FISHEYE_INST=/var/crucible
  23. # Move Homebrew temp files to ramdisk (build directory)
  24. export HOMEBREW_TEMP=/Volumes/RamDisk
  25. export DISPLAY=:0.0
  26. # Add /usr/local manpages
  27. if [[ -d /usr/local/share/man ]];then
  28. MANPATH=$MANPATH:/usr/local/share/man
  29. fi
  30. if [[ -d /usr/local/man ]];then
  31. MANPATH=$MANPATH:/usr/local/man
  32. fi
  33. export MANPATH