This commit is contained in:
Joe Block 2014-09-24 05:12:15 +00:00
commit 14a68bf642
2 changed files with 15 additions and 0 deletions

View File

@ -38,6 +38,16 @@ Usage
rm -f ~/.zcompdump; compinit
#### Using antigen
Add
```bash
antigen bundle zsh-lovers/zsh-completions
```
to your `.zshrc`. This will automatically clone the repository and add zsh-completions/src to your `$fpath`. You may have to rebuild zcompdump as listed above under Manual Installation.
Contributing
------------

View File

@ -0,0 +1,5 @@
# Simple plugin script to automate loading the zsh-completions repo into
# $fpath for antigen users
COMPLETIONS_D="$(dirname $0)/src"
fpath=("${COMPLETIONS_D}" $fpath)