You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
1.9 KiB
102 lines
1.9 KiB
# Sourced on all invocations of shell unless -f option is set
|
|
# Command Search Path
|
|
# Important Environment Variables
|
|
# Do not produce output
|
|
# Do not assume tty
|
|
#
|
|
# $ZDOTDIR/.zshenv
|
|
# $ZDOTDIR/.zprofile
|
|
# $ZDOTDIR/.zshrc
|
|
# $ZDOTDIR/.zlogin
|
|
|
|
export LANG=en_US.UTF-8
|
|
|
|
declare UNAME_S=`/usr/bin/uname -s`
|
|
declare UNAME_M=`/usr/bin/uname -m`
|
|
declare UNAME_N=`/usr/bin/uname -n`
|
|
|
|
# Setup path
|
|
path=(
|
|
$HOME/Library/Scripts/bin/`/usr/bin/uname -s`/`/usr/bin/uname -m`
|
|
$HOME/Library/Scripts/bin/`/usr/bin/uname -s`
|
|
$HOME/Library/Scripts/sh
|
|
$HOME/Library/Python/bin
|
|
/opt/local/bin /usr/local/bin /usr/bin /bin
|
|
/opt/local/sbin /usr/local/sbin /usr/sbin /sbin
|
|
/usr/X11R6/bin
|
|
/opt/local/Library/Frameworks/Python.framework/Versions/Current/bin
|
|
)
|
|
|
|
if [ -d $HOME/.rvm/bin ]; then
|
|
path=($path $HOME/.rvm/bin)
|
|
fi
|
|
|
|
# Go
|
|
if [ -d /usr/local/go/bin ]; then
|
|
path=($path /usr/local/go/bin)
|
|
declare -x GOPATH="/Users/lanhel/Developer/SpaceMonkey/katamari/go"
|
|
fi
|
|
|
|
|
|
# Setup MANPATH
|
|
manpath=(
|
|
$HOME/man
|
|
/opt/local/man
|
|
/usr/local/share/man
|
|
/usr/local/man
|
|
/usr/share/man
|
|
/usr/man
|
|
)
|
|
|
|
# Set the the list of directories that cd searches.
|
|
# cdpath=(
|
|
# $cdpath
|
|
# )
|
|
# Setup file creation mask
|
|
#umask 077
|
|
|
|
# Setup by operating system type
|
|
case $UNAME_S in
|
|
Darwin)
|
|
path=($path /System/Applications /Applications)
|
|
|
|
declare -x MANPATH=`echo $MANPATH | sed 's*'$HOME/man'*'$HOME/Library/man'*g'`
|
|
;;
|
|
|
|
linux*)
|
|
;;
|
|
esac
|
|
|
|
# Setup by processor type
|
|
case $UNAME_M in
|
|
powerpc)
|
|
;;
|
|
|
|
i386)
|
|
;;
|
|
esac
|
|
|
|
# Setup by host name
|
|
case $UNAME_N in
|
|
helsten)
|
|
;;
|
|
|
|
pfiefferhorn)
|
|
;;
|
|
esac
|
|
|
|
# Setup by subsystem
|
|
for f in `find $HOME/Library/Scripts/config -name '*.shenv' -print`; do
|
|
source "$f"
|
|
done
|
|
|
|
# Ensure path arrays do not contain duplicates
|
|
typeset -gU cdpath fpath mailpath path
|
|
|
|
# Cleanup
|
|
unset UNAME_S
|
|
unset UNAME_M
|
|
unset UNAME_N
|
|
|
|
|