| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #
- # /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 LESS='-eirMX'
- export EDITOR='vim'
- ## paths
- export PATH=/usr/sbin:/usr/bin:~/bin:$PATH
- export PATH=/usr/lib/firefox-3.6:$PATH
- export PATH=/usr/local/bin:/usr/local/git/bin:$PATH
- export PATH=/usr/local/php/bin:/usr/local/php53/bin:$PATH
- export PATH=/usr/local/apache2/bin:$PATH
- export PATH=/usr/local/mysql/bin:$PATH
- export PATH=/opt/local/bin:/opt/local/sbin:$PATH
- export PATH=$HOME/.rvm/bin:$PATH
- export PATH=/jails/alcatraz/usr/local/www/oars/libraries/lithium/console:$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
- ## csv login
- export CVSROOT=:pserver:weiyi@cvs:/usr/cvsroot
- # for esxi perl stuff to not fail
- export PERL_LWP_SSL_VERIFY_HOSTNAME=0
- # Homebrew for Mac: move temp files to ramdisk (build directory)
- #export HOMEBREW_TEMP=/Volumes/RamDisk
|