zshenv 721 B

12345678910111213141516171819202122232425
  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 EDITOR='vim'
  11. ## paths
  12. export PATH=/usr/local/bin:~/bin:/usr/sbin:/usr/bin:$PATH
  13. export PATH=$HOME/.rvm/bin:$PATH
  14. export PATH=~/dotfiles/powerline/powerline/scripts:$PATH
  15. # Add /usr/local manpages
  16. if [[ -d /usr/local/share/man ]];then
  17. MANPATH=/usr/local/share/man:$MANPATH
  18. fi
  19. if [[ -d /usr/local/man ]];then
  20. MANPATH=/usr/local/man:$MANPATH
  21. fi
  22. export MANPATH