blob: e92917496e144c6dd2c9d41ae2919ef1f9b65ea0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Set up brew
if [[ -f /opt/homebrew/bin/brew ]]; then
export HOMEBREW_NO_ENV_HINTS=1
export HOMEBREW_NO_ANALYTICS=1
eval "$(/opt/homebrew/bin/brew shellenv)"
fpath=("/opt/homebrew/share/zsh/site-functions" $fpath)
# Prefer GNU versions of certain tools
local tool_bin
for tool_bin in /opt/homebrew/opt/*/libexec/gnubin(N); do
if [[ "${tool_bin}" == */gsed/* ]]; then
continue # Alias to gnu-sed
fi
export PATH="${tool_bin}${PATH+:$PATH}"
export MANPATH="$(dirname ${tool_bin})/gnuman${MANPATH+:$MANPATH}"
done
# Brew leaves and deps
brews() {
local formulae="$(brew leaves | xargs brew deps --installed --for-each)"
local casks="$(brew list --cask)"
local blue="$(tput setaf 4)"
local bold="$(tput bold)"
local off="$(tput sgr0)"
echo "${blue}==>${off} ${bold}Formulae${off}"
echo "${formulae}" | sed "s/^\(.*\):\(.*\)$/\1${blue}\2${off}/"
echo "\n${blue}==>${off} ${bold}Casks${off}\n${casks}"
}
fi
|