summaryrefslogtreecommitdiff
path: root/.zsh/zshenv/01_fpath
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2013-06-07 19:28:20 +0200
committerTobias Klauser <tklauser@distanz.ch>2013-06-07 19:28:20 +0200
commit0053dfd996e20b29c8eb2df5d05ba7644898df61 (patch)
tree2cbb6274766151ad2003c78693b563cff6d1d499 /.zsh/zshenv/01_fpath
parentaae61fdf1c63688cdc1d666616269acb87dc2fa8 (diff)
Add custom completions for netsniff-ng tools
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