Setup My Mac

System Settings Keyboard Key repeat rate and delay until repeat Modify shortcuts for screenshots Under Desktop & Doc > Shortcuts set ShowDesktop to right option key Enable Hot Corners under Desktop & Doc > Hot Corners Menu Bar and Control Center Cleanup Dock and move to right Configs 1 2 cd ~/Desktop/code git clone https://github.com/patty111/configs.git Homebrew Install homebrew Install packages 1 2 cd ~/Desktop/code/configs/macOS brew bundle raycast disable window navigation disable spotlight iterm install nerd font CascadiaMono or CascadiaCove and import rectangle github ssh key setup git config Install cargo Solana cli Zsh Install oh-my-zsh config file and plugins setup 1 cp ~/Desktop/code/configs/macOS/....

August 10, 2024 · 1 min

Github SSH Setup

Setup Authentication with Github using SSH, github username/password authentication is deprecated. Generate SSH Key 1 ssh-keygen -t rsa -b 4096 -C "your_email@example.com" This should generate a public and private key pair in ~/.ssh/ directory. Should be something like id_rsa and id_rsa.pub. Github Setup Go to github > settings > SSH and GPG keys > New SSH key and paste the contents of id_rsa.pub file. Key type used is authentication key....

August 10, 2024 · 1 min