diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2013-06-07 19:28:20 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2013-06-07 19:28:20 +0200 |
commit | 0053dfd996e20b29c8eb2df5d05ba7644898df61 (patch) | |
tree | 2cbb6274766151ad2003c78693b563cff6d1d499 /.zsh/zshenv/01_fpath | |
parent | aae61fdf1c63688cdc1d666616269acb87dc2fa8 (diff) |
Add custom completions for netsniff-ng tools
Diffstat (limited to '.zsh/zshenv/01_fpath')
-rw-r--r-- | .zsh/zshenv/01_fpath | 5 |
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 |