]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
Moved loading of add-zsh-hook up.
authorSimon Ruderich <simon@ruderich.org>
Thu, 1 Jan 2009 20:38:36 +0000 (21:38 +0100)
committerSimon Ruderich <simon@ruderich.org>
Mon, 16 Feb 2009 15:34:40 +0000 (16:34 +0100)
So it can be used everywhere.

zsh/rc

diff --git a/zsh/rc b/zsh/rc
index 93feb7d33f41383e2b8e64b64652e66ee7f6593e..ebbd99457821afa65586ff837a8585240510da97 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -36,6 +36,9 @@ setopt autocd
 # one.
 setopt correct
 
+# Autoload add-zsh-hook to add/remove zsh hook functions easily.
+autoload -Uz add-zsh-hook
+
 # Use colorized output, necessary for prompts and completions.
 autoload -U colors && colors
 
@@ -87,9 +90,6 @@ setopt extendedglob
 # Don't exit if <C-d> is pressed.
 setopt ignoreeof
 
-# Autoload add-zsh-hook to add/remove zsh hook functions easily.
-autoload -Uz add-zsh-hook
-
 # If ^C is pressed while typing a command, add it to the history so it can be
 # easily retrieved later and then abort like ^C normally does. This is useful
 # when I want to abort an command to do something in between and then finish