These are my dotfiles. You should fork http://mths.be/dotfiles.
You can clone the repository wherever you want. (I keep mine in
~/Dropbox/dotfiles [I dig the auto update ability of Dropbox and the
version control of git]) The bootstrapper script will pull in the latest
version and copy the files to your home folder.
git clone https://github.com/cobhimself/dotfiles.git && cd dotfiles && ./bootstrap.shTo update, cd into your local dotfiles repository and then:
./bootstrap.shAlternatively, to update while avoiding the confirmation prompt:
Careful, the following will overwrite your ~/ if you agree to continue!
./bootstrap.sh -fTo install these dotfiles without Git:
cd; curl -#L https://github.com/mathiasbynens/dotfiles/tarball/master | tar -xzv --strip-components 1 --exclude={README.md,bootstrap.sh}To update later on, just run that command again.
If ~/.path exists, it will be sourced along with the other files, before any feature testing (such as detecting which version of ls is being used) takes place.
Here’s an example ~/.path file that adds ~/utils to the $PATH:
export PATH="$HOME/utils:$PATH"If ~/.extra exists, it will be sourced along with the other files. You can use this to add a few custom commands without the need to fork this entire repository, or to add commands you don’t want to commit to a public repository.
You could also use ~/.extra to override settings, functions and aliases from my dotfiles repository. It’s probably better to fork this repository instead, though.
When setting up a new Mac, you may want to set some sensible OS X defaults:
./.osxWhen setting up a new Mac, you may want to install some common Homebrew formulae (after installing Homebrew, of course):
./.brewSuggestions/improvements welcome!