Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 790 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 790 Bytes

dotfiles

My dotfiles

Inspired by Tom Meagher and explained in great detail by Nicola Paulucci.

Installation

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

Other configurations

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]"