2021/2022 MacBook -Quick Setup

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.finde…


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

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

Let me know if you have other tips/questions! 😊


This content originally appeared on DEV Community and was authored by Kitty code


Print Share Comment Cite Upload Translate Updates
APA

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/

MLA
" » 2021/2022 MacBook -Quick Setup." Kitty code | Sciencx - Monday December 27, 2021, https://www.scien.cx/2021/12/27/2021-2022-macbook-quick-setup/
HARVARD
Kitty code | Sciencx Monday December 27, 2021 » 2021/2022 MacBook -Quick Setup., viewed ,<https://www.scien.cx/2021/12/27/2021-2022-macbook-quick-setup/>
VANCOUVER
Kitty code | Sciencx - » 2021/2022 MacBook -Quick Setup. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/12/27/2021-2022-macbook-quick-setup/
CHICAGO
" » 2021/2022 MacBook -Quick Setup." Kitty code | Sciencx - Accessed . https://www.scien.cx/2021/12/27/2021-2022-macbook-quick-setup/
IEEE
" » 2021/2022 MacBook -Quick Setup." Kitty code | Sciencx [Online]. Available: https://www.scien.cx/2021/12/27/2021-2022-macbook-quick-setup/. [Accessed: ]
rf:citation
» 2021/2022 MacBook -Quick Setup | Kitty code | Sciencx | 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.

You must be logged in to translate posts. Please log in or register.