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_fpath5
1 files changed, 4 insertions, 1 deletions
diff --git a/.zsh/zshenv/01_fpath b/.zsh/zshenv/01_fpath
index 6c86623..10275bc 100644
--- a/.zsh/zshenv/01_fpath
+++ b/.zsh/zshenv/01_fpath
@@ -2,7 +2,7 @@
#
# Add local functions directory to $fpath
#
-# Copyright © 2010 Tobias Klauser <tklauser@distanz.ch>
+# Copyright © 2010-2013 Tobias Klauser <tklauser@distanz.ch>
# Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
# Released under the terms of the Artistic Licence 2.0
#
@@ -10,4 +10,7 @@
fpath=($ZDOTDIR/func $fpath)
+# add custom completions
+fpath=($ZDOTDIR/completion $fpath)
+
# vim:ft=zsh