]> arthur.barton.de Git - ax-zsh.git/blob - plugins/homebrew/homebrew.zprofile
ccab0b73bb95f9bbaf41dc25aaf29f03b5c0a104
[ax-zsh.git] / plugins / homebrew / homebrew.zprofile
1 # AX-ZSH: Alex' Modular ZSH Configuration
2 # homebrew.zprofile -- Setup Homebrew Package Manager
3
4 # Make sure that "brew(1)" is installed
5 (( $+commands[brew] )) || return 1
6
7 eval "$(brew shellenv)"
8
9 [[ -d "$HOMEBREW_PREIX/share/zsh-completions" ]] \
10         && axzsh_fpath+=("$HOMEBREW_PREFIX/share/zsh-completions")
11
12 return 0