Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 392 Bytes

Contributing.md

File metadata and controls

18 lines (12 loc) · 392 Bytes

Contributing

Shell helpers

For this repo we have a few zsh shell helpers that are used to make development easier. To make use of them you can add the following to your .zshrc file in your preferred way.

autoload -U add-zsh-hook

function load_aliases() {
  [ -f ./.aliases ] && [ "$PWD" != "$HOME" ] && source ./.aliases
}

load_aliases
add-zsh-hook chpwd load_aliases