bbkane/dotfiles

zsh: zsh-completions

bkane-msft opened this issue · 0 comments

Specificatlly for openssl - https://github.com/zsh-users/zsh-completions

# for openssl completions
# brew install zsh-completions
if type brew &>/dev/null; then
    FPATH=$(brew --prefix)/share/zsh-completions:$FPATH

    autoload -Uz compinit
    compinit
fi
# Also need https://stackoverflow.com/a/22753363/2958070