Mercurial > dotfiles
view .zshrc @ 10:b4bfce76123f
Reorder these checks. With my home being in hg, it was winning over any other
checkouts. Now look for hg last.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Tue, 02 Dec 2008 19:53:38 -0600 |
parents | c30d68fbd368 |
children | 62bfb554ab85 |
line wrap: on
line source
# Augie Fackler's zshrc file for file in $(ls $HOME/.zsh) ; do source $HOME/.zsh/$file done # Login greeting ------------------ if [ ! "$SHOWED_SCREEN_MESSAGE" = "true" ]; then if which screen > /dev/null; then detached_screens=`screen -list | grep Detached | sed -e 's/ (Detached)//'` if [ ! -z "$detached_screens" ]; then echo "+---------------------------------------+" echo "| Detached screens are available: |" echo "$detached_screens" echo "+---------------------------------------+" fi fi export SHOWED_SCREEN_MESSAGE="true" fi # If available, source private extensions stored in a different repo if [[ -a ~/.private/zshrc ]]; then source ~/.private/zshrc fi if [[ -a ~/.zshrc-machine ]]; then source ~/.zshrc-machine fi