Last active
February 28, 2025 16:24
-
-
Save camb416/5f61b53e21c056034395d805128fedc0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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