Homebrewで入れたGitの補完をzshで効かせる
git checkout <branch>
するときに、
branch名の補完が効かなくていらついてた。
なんとかする。
Homebrew公式ドキュメント に対策が書いてあった。
Configuring Completions in zsh
To make Homebrew’s completions available in zsh, you must get the Homebrew-managed zsh site-functions on your FPATH before initialising zsh’s completion acility. Add the following to your ~/.zshrc file:
if type brew &>/dev/null; then FPATH=$(brew --prefix)/share/zsh/site-functions:$FPATH autoload -Uz compinit compinit fi