Your dotfiles are how you personalize your system. These are mine, forked from holman's zsh dotfiles, implemented in bash. zsh is the better shell, but I'm stuck with bash for corporate reasons. If you must use bash, you can start here.
Use git to clone this repository, then run the bootstrap script:
git clone https://github.com/tomichj/dotfiles.git ~/.dotfiles
cd ~/.dotfiles
script/bootstrapThis will symlink the appropriate files in .dotfiles to your home directory.
Everything is configured and tweaked within ~/.dotfiles.
The main file you'll want to change right off the bat is bash/bashrc.symlink,
which sets up a few paths that'll be different on your particular machine.
Especially:
BASHpoints to your dotfiles. Defaults to~/.dotfiles.PROJECTSpoints to your development directory. Defaults to~/Projects.
dot is a simple script that installs some dependencies, sets sane OS X
defaults, and so on. Tweak this script, and occasionally run dot from
time to time to keep your environment fresh and up-to-date. You can find
this script in bin/.
Everything's built around topic areas. If you're adding a new area to your
forked dotfiles — say, "Java" — you can simply add a java directory and put
files in there. Anything with an extension of .bash will get automatically
included into your shell. Anything with an extension of .symlink will get
symlinked without extension into $HOME when you run script/bootstrap.
Files included in platform/ will only be sourced if on the apropriate platform. Platform is determined using 'uname -s'. Currently configuration is only provided for Darwin/Mac OS X, but Linux support may be added in the near future.
A lot of stuff. Seriously, a lot of stuff. Check them out in the file browser above and see what components may mesh up with you. Fork it, remove what you don't use, and build on what you do use.
There's a few special files in the hierarchy.
- bin/: Anything in
bin/will get added to your$PATHand be made available everywhere. - topic/*path.bash: Any files ending in
path.bashare loaded first and are expected to setup$PATHor similar. - topic/*.bash: Any files ending in
.bashget loaded into your environment. - topic/*completion.bash: Any files ending in
completion.bashis loaded last and is expected to setup autocomplete. - platform/Darwin/*.bash: if on a Mac, these files are loaded.
- topic/*.symlink: Any files ending in
*.symlinkget symlinked into your$HOME. This is so you can keep all of those versioned in your dotfiles but still keep those autoloaded files in your home directory. These get symlinked in when you runscript/bootstrap.
These dotfiles support strap. Strap will install this repo, run script/bootstrap, and then finish with script/strap-after-setup.
I want this to work for everyone; that means when you clone it down it should
work for you even though you may not have rbenv installed, for example. That
said, I do use this as my dotfiles, so there's a good chance I may break
something if I forget to make a check for a dependency.
If you're brand-new to the project and run into any blockers, please open an issue on this repository and I'd love to get it fixed for you!
I forked Holman's' excellent dotfiles. I also appropriated some functions from bash-it, another excellent source of bash configuration ideas.