Commit | Line | Data |
---|---|---|
e34038a2 | 1 | #! /bin/zsh |
041d9fae AB |
2 | |
3 | # clone my prezto fork | |
a401af00 | 4 | git clone --recursive git@github.com:aminb/prezto.git $HOME/.zprezto |
041d9fae AB |
5 | |
6 | # setup the symlinks | |
7 | setopt EXTENDED_GLOB | |
8 | for rcfile in "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/^README.md(.N); do | |
9 | ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile:t}" | |
10 | done |