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