From 27065816c78f1678ab2295ecc1e4eaf5ebd9bd83 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Wed, 28 Nov 2012 10:18:43 +0100 Subject: .zshrc --- .zshrc | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to '.zshrc') diff --git a/.zshrc b/.zshrc index 1a166e5..307ebc7 100644 --- a/.zshrc +++ b/.zshrc @@ -1,4 +1,6 @@ # -*- Mode: shell-script; -*- +autoload -Uz add-zsh-hook + # Setup variables HISTFILE=$ZDOTDIR/histfile HISTSIZE=1000 @@ -48,10 +50,11 @@ typeset -ga precmd_functions typeset -ga chpwd_functions # Append git functions needed for prompt. -preexec_functions+='preexec_update_vars' -precmd_functions+='precmd_update_git_vars' -precmd_functions+='precmd_update_updates' -chpwd_functions+='chpwd_update_git_vars' +add-zsh-hook preexec preexec_update_vars +add-zsh-hook precmd precmd_update_git_vars +add-zsh-hook precmd precmd_update_updates +add-zsh-hook precmd precmd_maybe_festival +add-zsh-hook chpwd chpwd_update_git_vars # Set the prompt. PROMPT='$(prompt)' -- cgit v1.2.3-54-g00ecf