1
0
mirror of https://github.com/akelge/zsh synced 2025-07-03 21:19:06 +00:00

Better autocompletion for Darwin too

This commit is contained in:
2021-10-28 11:44:23 +02:00
parent ec13969e0f
commit 73455f0d9e

View File

@ -0,0 +1,12 @@
if type brew &>/dev/null
then
FPATH="$(brew --prefix)/share/zsh/site-functions:${FPATH}"
#
# Reload compinit and bashcompinit, to parse brew installed completions
autoload -U compinit
autoload bashcompinit
compinit -u
bashcompinit
fi