diff options
Diffstat (limited to 'zshrc')
-rw-r--r-- | zshrc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 } |