Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 675 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 675 Bytes

My Dotfiles

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.

Setup / Usage

./script/setup

System specific zsh includes

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.