This is my dotfiles repo which contains most of the configuration that I use day to day to get things done.
Most files are decently documented.
./script/setup
Different ststems often have different setups. For example one machine might
have nvm
, and rbenv
but another might only have chruby
and no nvm
. To
get around this the following line is included in zshrc
:
for function in ~/.zsh/*; do
source $function
done
This loop in combination with gitignore
ignoring all files in the .zsh
directory we can add any system specific scripts for and they'll be sourced.