dotfiles/homebrew/brew.config.fish

12 lines
272 B
Fish
Raw Normal View History

2024-01-28 21:46:55 -08:00
#!/usr/bin/env fish
set -gx HOMEBREW_NO_ANALYTICS 1
if status --is-interactive
2024-02-02 18:52:21 -08:00
if [ "$(uname -m)" = arm64 ]
eval "$(/opt/homebrew/bin/brew shellenv fish)"
else if [ "$(uname -m)" = x86_64 ]
eval "$(/usr/local/bin/brew shellenv fish)"
end
end