zshenv 948 B

12345678910111213141516171819202122232425262728293031
  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. # Add /usr/local manpages
  22. if [[ -d /usr/local/share/man ]];then
  23. MANPATH=/usr/local/share/man:$MANPATH
  24. fi
  25. if [[ -d /usr/local/man ]];then
  26. MANPATH=/usr/local/man:$MANPATH
  27. fi
  28. export MANPATH