This content originally appeared on DEV Community and was authored by Kitty code
Did anyone else get a new laptop this holiday season? 👀
Here are the steps I follow to get setup quickly!
1. Show hidden folders
chflags nohidden ~/Library
defaults write com.apple.finder AppleShowAllFiles YES
defaults write com.apple.finder ShowPathbar -bool true
defaults write com.apple.finder ShowStatusBar -bool true
2. Install brew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Check your path and make sure path includes your brew location.
- Check path:
echo $PATH | tr ":" "\n"\n
- Brew location:
which brew
- (Probably something like
/opt/homebrew/bin
) - If the location is missing, then add it to your
~/.zshrc
, like this:export PATH=/opt/homebrew/bin:$PATH
- Check path:
3. iTerm & OhMyZsh & Starship
- https://iterm2.com/
$ sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
brew install starship
echo 'eval "$(starship init zsh)"' >> ~/.zshrc
- (Install font & then change font in iTerm settings)
brew tap homebrew/cask-fonts
brew install --cask font-hack-nerd-font
4. Node & AWS CLI (for AWS development)
brew install node@16
curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg"
sudo installer -pkg AWSCLIV2.pkg -target /
-
aws configure
(assuming you already have credentials) npm install -g aws-cdk
- auto-complete:
autoload bashcompinit && bashcompinit
autoload -Uz compinit && compinit
complete -C '/usr/local/bin/aws_completer' aws
5. Other Apps
- Rectangle (window management): https://rectangleapp.com/
- VSCode: https://code.visualstudio.com/download
Let me know if you have other tips/questions! 😊
This content originally appeared on DEV Community and was authored by Kitty code

Kitty code | Sciencx (2021-12-27T00:30:43+00:00) 2021/2022 MacBook -Quick Setup. Retrieved from https://www.scien.cx/2021/12/27/2021-2022-macbook-quick-setup/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.