This is my version from Mathias’s dotfiles
You can clone the repository:
git clone git@github.com:hersonls/dotfiles.git && cd dotfiles && source sync.shTo update, cd into your local dotfiles repository and then:
Install dependences
sh install_deps.shSync dotfiles
source sync.shAlternatively, to update while avoiding the confirmation prompt:
set -- -f; source sync.shTo install these dotfiles without Git:
cd; curl -#L https://github.com/hersonls/dotfiles/tarball/master | tar -xzv --strip-components 1 --exclude={README.md,sync.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.
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):
./.brewSend a pullrequest to this repo :D