summaryrefslogtreecommitdiff
path: root/etc/.zprofile
diff options
context:
space:
mode:
Diffstat (limited to 'etc/.zprofile')
-rw-r--r--etc/.zprofile6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/.zprofile b/etc/.zprofile
index ffdd0f1..cadc848 100644
--- a/etc/.zprofile
+++ b/etc/.zprofile
@@ -1,6 +1,6 @@
## vim:ft=zsh
function pr_info {
- print -P "%F{cyan}>>%F{default} $*"
+ print -P "%F{cyan}>>%F{default} ${*}"
}
echo
@@ -14,7 +14,7 @@ pr_info "This is %F{cyan}$(uname -srm)%F{default} on %F{cyan}%y%F{default}"
echo
[[ -n $(echo Maildir/new/*(N)) ]] && pr_info "You have mail!"
-[[ -r $ZDIR/local-profile ]] && source $ZDIR/local-profile
-[[ -r $ZDIR/hosts/profile-$HOST ]] && source $ZDIR/hosts/profile-$HOST
+[[ -r ${ZDIR}/local-profile ]] && source ${ZDIR}/local-profile
+[[ -r ${ZDIR}/hosts/profile-${HOST} ]] && source ${ZDIR}/hosts/profile-${HOST}
unfunction pr_info