]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
Autoload custom functions at start of zsh/rc.
authorSimon Ruderich <simon@ruderich.org>
Sun, 8 Feb 2009 15:46:48 +0000 (16:46 +0100)
committerSimon Ruderich <simon@ruderich.org>
Mon, 16 Feb 2009 15:34:43 +0000 (16:34 +0100)
Moved to new section "Function settings" at the beginning of rc.

zsh/rc

diff --git a/zsh/rc b/zsh/rc
index 62dcda70c851048031b9ea34a9da1572cab2842b..69b19df10d66861c06dec31627b7b4e4e9203874 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -31,6 +31,16 @@ setopt extendedglob
 setopt ignoreeof
 
 
+# FUNCTION SETTINGS
+
+# Set correct fpath to allow loading my functions (including completion
+# functions).
+fpath=(~/.zsh/functions $fpath)
+# Autoload my functions (except completion functions and hidden files). Thanks
+# to caphuso from the Zsh example files for this idea.
+autoload ${fpath[1]}/^_*(:t)
+
+
 # HISTORY SETTINGS
 
 # Use history and store it in ~/.zsh/history.
@@ -197,7 +207,7 @@ zstyle ':completion:*:unset:*' ignore-line yes
 zstyle ':completion:*:(hg|git)*:*' ignore-line yes
 
 
-# ALIAS AND FUNCTION SETTINGS
+# CUSTOM ALIASES AND FUNCTIONS
 
 # Simplify calls to less, automatically redirects all output.
 alias -g L='2>&1 | less'
@@ -262,13 +272,6 @@ function ll() {
     la -l $*
 }
 
-# Set correct fpath to allow loading my functions (including completion
-# functions).
-fpath=(~/.zsh/functions $fpath)
-# Autoload my functions (except completion functions and hidden files). Thanks
-# to caphuso from the Zsh example files for this idea.
-autoload ${fpath[1]}/^_*(:t)
-
 # 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