summaryrefslogtreecommitdiff
path: root/.zsh/zshenv/01_fpath
diff options
context:
space:
mode:
Diffstat (limited to '.zsh/zshenv/01_fpath')
-rw-r--r--.zsh/zshenv/01_fpath12
1 files changed, 12 insertions, 0 deletions
diff --git a/.zsh/zshenv/01_fpath b/.zsh/zshenv/01_fpath
new file mode 100644
index 0000000..88fcea3
--- /dev/null
+++ b/.zsh/zshenv/01_fpath
@@ -0,0 +1,12 @@
+# zshenv/01_fpath
+#
+# Add local functions directory to $fpath
+#
+# Copyright © 2010 Tobias Klauser <tklauser@distanz.ch>
+# Released under the terms of the Artistic Licence 2.0
+#
+# Source repository: git://git.distanz.ch/dotfiles/zsh.git
+
+fpath=($ZDOTDIR/func $fpath)
+
+# vim:ft=zsh