dotfiles/bin/install-brew.sh

38 lines
661 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
# give me /usr/local first
#sudo chown -R "$USER" /usr/local
# Install Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Make sure were using the latest Homebrew
brew update
# Upgrade any already-installed formulae
brew upgrade --all
# Install what we need
brew install \
coreutils \
zsh \
zsh-syntax-highlighting \
zsh-autosuggestions \
git \
wget \
gpg \
nvm \
pinentry-mac \
openssl \
tor \
pure \
python \
rclone \
rsync \
shellcheck \
ipfs \
clamav
# Remove outdated versions from the cellar.
brew cleanup