dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit f718695123a36590f8a8f3974fc458c66c17c260
parent 1f14162476dd37bd5ea925b330050d4205fc65cb
Author: Chris Bracken <chris@bracken.jp>
Date:   Sat, 21 Feb 2026 09:24:12 +0900

zsh: use homebrew completions

Diffstat:
M.config/zsh/.zshrc | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc @@ -18,6 +18,9 @@ bindkey '^Y' push-line bindkey '^R' history-incremental-search-backward # Add zsh completion definition dirs. +if [ -d ".homebrew/share/zsh/site-functions" ]; then + fpath=("$HOME/.homebrew/share/zsh/site-functions" "${fpath[@]}") +fi fpath=("$HOME/.local/zsh/site-functions" "$ZDOTDIR/site-functions" "${fpath[@]}") # Specify where compinstall writes cfg commands. Default, but saves checks.