Dotfiles organized using chezmoi.
Quickstart:
$ xcode-select --install
$ sh -c "$(curl -fsLS get.chezmoi.io)" -- init --apply kpj
Or (after setting up environment):
# retrieve dotfiles
$ chezmoi init git@github.com:kpj/dotfiles.git
# check which changes would be made
$ chezmoi diff
# apply them
$ chezmoi apply -v
# add a new file
$ chezmoi add <file>
# edit files
$ chezmoi edit <file>
$ chezmoi -v apply # -n
# commit changes
$ chezmoi cd
$ git diff
$ git add <file>
$ git commit
$ git push
$ chezmoi update -v