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