summaryrefslogtreecommitdiff
path: root/zshrc
diff options
context:
space:
mode:
Diffstat (limited to 'zshrc')
-rw-r--r--zshrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/zshrc b/zshrc
index 03e9fc3..92d1e39 100644
--- a/zshrc
+++ b/zshrc
@@ -105,7 +105,7 @@ export DEBEMAIL="weasel@debian.org"
#######################################################################
#######################################################################
-fpath=( "$HOME/.zshfunc" "$fpath[@]" )
+fpath=( "$HOME/.zshfunc" "$HOME/.zshfunc/vcs-info" "$fpath[@]" )
export FPATH
# Only unique entries please.
typeset -U fpath
@@ -325,10 +325,10 @@ function init-prompt() {
fi
if [ "`id -u`" = "0" -o ! -x /usr/bin/id ] ; then
- export PROMPT='${debian_chroot:+[$debian_chroot] }${vcs_info_msg_0_}%n@%m:%~# '
+ export PROMPT='${debian_chroot:+[$debian_chroot] }${VCS_INFO_message_0_}%n@%m:%~# '
export TITLE="%n@%m: %~"
else
- export PROMPT='${debian_chroot:+[$debian_chroot] }${vcs_info_msg_0_}%n@%m:%~$ '
+ export PROMPT='${debian_chroot:+[$debian_chroot] }${VCS_INFO_message_0_}%n@%m:%~$ '
export TITLE="%n@%m: %~"
fi
}