Skip to content

Latest commit

 

History

History
49 lines (30 loc) · 870 Bytes

DOCS.md

File metadata and controls

49 lines (30 loc) · 870 Bytes

Docs

Disk Encryption

Turn on FileVault:

fdesetup status # check status

sudo fdesetup enable

Troubleshooting Guide

XCode Command Line Tools

If not prompted when using git for the first time, manually install the XCode Command Line Tools:

xcode-select --install

iTerm

If the preferences aren't picked up automatically: point Load preferences from custom folder or URL to ~/dotfiles/iterm2

If the settings are not applied, run:

defaults read com.googlecode.iterm2

SSH

To manually add keys to the macOS ssh-agent:

ssh-add -K ~/.ssh/id_rsa

The ssh-agent can then automatically load the key from the macOS keychain every time it needs it.

Git Submodules

Update all submodules to the latest tips of their remote branches:

git submodule update --recursive --remote