zshenv 623 B

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