## My zsh config ### Prerequisites - `antibody` - `fasd` - `fzf` - `pipenv` - `virtualenvwrapper` ### Git hooks Link the githooks to update at each commit and pull action. ```sh for hook in githooks/* do ln -s ../../${hook} .git/hooks/$(basename ${hook}) done ```