| 12345678910111213141516171819202122232425 |
- #
- # /etc/zshenv is sourced on all invocations of the
- # shell, unless the -f option is set. It should
- # contain commands to set the command search path,
- # plus other important environment variables.
- # .zshenv should not contain commands that produce
- # output or assume the shell is attached to a tty.
- #
- ## don't close less when I am done reading
- export EDITOR='vim'
- ## paths
- export PATH=/usr/local/bin:~/bin:/usr/sbin:/usr/bin:$PATH
- export PATH=$HOME/.rvm/bin:$PATH
- export PATH=~/dotfiles/powerline/powerline/scripts:$PATH
- # Add /usr/local manpages
- if [[ -d /usr/local/share/man ]];then
- MANPATH=/usr/local/share/man:$MANPATH
- fi
- if [[ -d /usr/local/man ]];then
- MANPATH=/usr/local/man:$MANPATH
- fi
- export MANPATH
|