Skip to content

Instantly share code, notes, and snippets.

@mCzolko
Last active November 2, 2023 08:42
Show Gist options
  • Save mCzolko/787852adfa16a76a33374170a2e40a0c to your computer and use it in GitHub Desktop.
Save mCzolko/787852adfa16a76a33374170a2e40a0c to your computer and use it in GitHub Desktop.
Install Mac Apps
# Install homebrew
xcode-select --install
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install wget
# Install applications
brew install --casks maccy google-chrome warp rectangle mimestream messenger github visual-studio-code jetbrains-toolbox spotify 1password keepingyouawake
# Docker stuff
brew install --casks docker lens
# Create folder for projects
mkdir ~/workspace
# Install NodeJS version manager
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
# Install latest supported NodeJS version
nvm install --lts
# Install Yarn package manager
npm install -g yarn
# Get gitconfig
wget https://gist.githubusercontent.com/mCzolko/668b3095af8a7c48cb035795134ea5aa/raw -O .gitconfig
git config --global --add --bool push.autoSetupRemote true
# Get bash profile
wget https://gist.githubusercontent.com/mCzolko/47eebc291445732cb4b6bb3e2b2731c8/raw -O .bash_profile
echo "add `source ~/.bash_profile` to .zprofile"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment