From db608bc3515c00b00bbe424a772aee937ff8d6d1 Mon Sep 17 00:00:00 2001 From: Ghasem Shirazi Date: Tue, 24 Oct 2023 11:56:53 -0700 Subject: [PATCH] site-functions --- dotfiles/.zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dotfiles/.zshrc b/dotfiles/.zshrc index 2a3e51405..9a709027d 100644 --- a/dotfiles/.zshrc +++ b/dotfiles/.zshrc @@ -180,3 +180,6 @@ if [ -f '/Users/gshirazi/Downloads/google-cloud-sdk/path.zsh.inc' ]; then . '/Us # The next line enables shell command completion for gcloud. if [ -f '/Users/gshirazi/Downloads/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/gshirazi/Downloads/google-cloud-sdk/completion.zsh.inc'; fi + +# The next line enables brew installed site-functions completions +if [ -d '/usr/local/share/zsh/site-functions' ]; then for f in /uar/local/share/zsh/site-funtions; do . $f; done; fi