My personal tweaks on macOS. Tweak it as you like it, dotfiles are meant to be forked.
Includes:
- homebrew to install GUI applications, CLI tools and fonts
- terminal & shell settings
- macOS system preferences
1. Check for software updates.
$ sudo softwareupdate -i -r2. Install it all.
$ curl -L https://raw.github.com/diessica/dotfiles/master/bootstrap.sh | sh3. Tell Git who you are.
I prefer doing it in a separate
.gitlocalfile, referred by.gitconfig.
$ git config -f ~/.gitlocal user.email "{Your email}"4. Generate SSH keys and add them to GitHub.
ssh-keygen -t ed25519 -C "{Work email}" -f ~/.ssh/id_ed25519
ssh-keygen -t ed25519 -C "{Personal email}" -f ~/.ssh/id_personalHave fun!
Inspired by Holman, Mathias Bynens, Deny Dias and this question.
