added README

This commit is contained in:
Colin Henry 2022-05-15 12:27:49 -07:00
parent e159349ea6
commit c731339229
2 changed files with 29 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,6 +1,7 @@
# Ignore everything
*
# But not these files...
!README.md
!.gitignore
!bash/**
!tmux/tmux.conf

28
README.md Normal file
View File

@ -0,0 +1,28 @@
## Steps to bootstrap a new Mac
1. Install Apple's Command Line Tools, which are prerequisites for Git and Homebrew.
```bash
xcode-select --install
```
2. Clone repo into new hidden directory.
```bash`
# Use SSH (if set up)...
git clone git@github.com:jchenry/dotfiles.git ~/.config
# ...or use HTTPS and switch remotes later.
git clone https://github.com/jchenry/dotfiles.git ~/.config
```
3. run setup scripts
```bash
~/.config/scripts/acct.sh
~/.config/scripts/brew-setup.sh
~/.config/macos-defaults.sh
~/.config/bash/setup.sh
~/.config/tmux/setup.sh
~/.config/vscode/setup.sh
```