diff options
Diffstat (limited to 'other')
-rwxr-xr-x | other/zsh/setup.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/other/zsh/setup.sh b/other/zsh/setup.sh new file mode 100755 index 0000000..564936a --- /dev/null +++ b/other/zsh/setup.sh @@ -0,0 +1,10 @@ +#! /bin/bash + +# clone my prezto fork +git clone https://git.aminb.org/prezto $HOME/.zprezto + +# setup the symlinks +setopt EXTENDED_GLOB +for rcfile in "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/^README.md(.N); do + ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile:t}" +done |