# Immediately start zsh.
zsh
+
+# vim: ft=sh
source_config ~/.bash host rc $host
source_debug "finished sourcing ~/.bash/env"
+
+# vim: ft=sh
# Necessary for xterm to find man pages through PATH.
unset MANPATH
+
+# vim: ft=sh
source_config ~/.zsh host env $host
source_debug "finished sourcing ~/.zsh/env"
+
+# vim: ft=zsh
done
#compdef '_files -g "*.gz *.tgz *.bz2 *.tbz *.zip *.rar *.tar *.lha"' extract_archive
+
+# vim: ft=zsh
# Update the default PATH to include MacPorts, X11, and /usr/local.
typeset -U path
path=(/opt/local/bin /opt/local/sbin /usr/local/bin $path /usr/X11R6/bin)
+
+# vim: ft=zsh
# otherwise the path wouldn't be changed outside the function.
typeset -g -U path
path=($MYUNIX/bin /opt/local/bin /opt/local/sbin $path /usr/X11R6/bin)
+
+# vim: ft=zsh
# Add my bin/ directory to the default PATH.
typeset -U path
path=($HOME/bin $path)
+
+# vim: ft=zsh
clear
screen -list
fi
+
+# vim: ft=zsh
# Aliases for easy and fast cd to important directories.
alias cdh='cd ~htdocs'
alias cdl='cd ~logs'
+
+# vim: ft=zsh
# Fetch current URL in clipboard with wget.
alias wnc='wget --no-proxy $CLIPBOARD'
+
+# vim: ft=zsh
source_config ~/.zsh host rc ${$(hostname)//.*/}
source_debug "finished sourcing ~/.zsh/rc"
+
+# vim: ft=zsh