Additional completion definitions for Bash and Zsh.
Zsh:
Clone the repo
git clone https://github.com/modille/completions ~/git/github.com/modille/completions
Then include it on fpath
by adding the following to ~/.zshrc
:
MODILLE_COMPLETIONS="$HOME/git/github.com/modille/completions/zsh"
[[ -d $MODILLE_COMPLETIONS ]] && fpath=($MODILLE_COMPLETIONS $fpath)
And finally source the new changes and rebuild zcompdump
:
source ~/.zshrc
rm -f ~/.zcompdump; compinit