My dotfiles
Inspired by Tom Meagher and explained in great detail by Nicola Paulucci.
Cloning the repo:
$ alias home="git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME"
$ home init .dotfiles
$ home remote add origin https://github.com/timpetri/dotfiles
$ home fetch
$ home checkout master
$ home config --local status.showUntrackedFiles no
Installing and using zsh via brew
$ brew install zsh
$ echo '/usr/local/bin/zsh' | sudo tee -a /etc/shells
$ chsh -s /usr/local/bin/zsh
Configure my email address for git:
$ git config --global user.email "[email protected]"