Last active
November 2, 2023 08:42
-
-
Save mCzolko/787852adfa16a76a33374170a2e40a0c to your computer and use it in GitHub Desktop.
Install Mac Apps
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 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