| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #
- # /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'
- ## csv login
- export CVSROOT=:pserver:weiyi@cvs:/usr/cvsroot
- ## 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:/usr/local/mysql/bin:$PATH
- export PATH=/opt/local/bin:/opt/local/sbin:$PATH
- export PATH=/jails/alcatraz/usr/local/www/oars/libraries/lithium/console:$PATH
- export JAVA_HOME=/usr/local/java
- export ANT_HOME=/Developer/Java/Ant
- export CATALINA_HOME=/usr/local/tomcat
- export CLASSPATH=/usr/local/cruisecontrol/lib
- # 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
- # Add /usr/local manpages
- if [[ -d /usr/local/share/man ]];then
- MANPATH=$MANPATH:/usr/local/share/man
- fi
- if [[ -d /usr/local/man ]];then
- MANPATH=$MANPATH:/usr/local/man
- fi
- export MANPATH
|