bbkane / dotfiles

Configs for apps I care about
32 stars 4 forks source link

zsh: zsh-completions #22

Closed bkane-msft closed 1 year ago

bkane-msft commented 1 year ago

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