Merge 58fa86e567
into 9dc7328011
This commit is contained in:
commit
14a68bf642
10
README.md
10
README.md
|
@ -38,6 +38,16 @@ Usage
|
||||||
|
|
||||||
rm -f ~/.zcompdump; compinit
|
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
|
Contributing
|
||||||
------------
|
------------
|
||||||
|
|
||||||
|
|
|
@ -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)
|
Loading…
Reference in New Issue