Skip to content

Instantly share code, notes, and snippets.

@camb416
Last active February 28, 2025 16:24
Show Gist options
  • Save camb416/5f61b53e21c056034395d805128fedc0 to your computer and use it in GitHub Desktop.
Save camb416/5f61b53e21c056034395d805128fedc0 to your computer and use it in GitHub Desktop.
# Install Brew. This includes Command Line Tools for Xcode
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
read -p "Press enter to finish setting up Brew."
echo >> /Users/cam/.zprofile
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/cam/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
read -p "Press enter to Get on with tool installation."
# Install browser
brew install google-chrome
# Install terminal and code editors
brew install iterm2 \
jetbrains-toolbox \
vscodium
echo "alias code=codium" >> ~/.zprofile
echo "alias ll=ls -lAh" >> ~/.zprofile
# Mac App Store CLI (for installing Xcode)
brew install mas
# Xcodes. This lets you install multiple versions of Xcode and Apple SDKs and switch between them.
brew install --cask xcodes
# SF Symbols (for iOS/iPadOS/macOS development)
brew install sf-symbols
# Install creative apps
brew install processing \
blender \
# Install customizer tools
brew install karabiner-elements \
rectangle \
font-hack-nerd-font \
oh-my-posh \
# Install archey
brew install archey4
echo "archey4" >> ~/.zprofile
# Git LFS
brew install git-lfs
git lfs install
# Imagemagick
brew install imagemagick
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment