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.sh
To update, cd
into your local dotfiles
repository and then:
Install dependences
sh install_deps.sh
Sync dotfiles
source sync.sh
Alternatively, to update while avoiding the confirmation prompt:
set -- -f; source sync.sh
To 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:
./.osx
When setting up a new Mac, you may want to install some common Homebrew formulae (after installing Homebrew, of course):
./.brew
Send a pullrequest to this repo :D