dotfiles
dotfiles copied to clipboard
My dotfiles. Decently documented.
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.