blob: 760392b91d99039a9a3f454333b251dac59bf142 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#! /bin/zsh
# clone my prezto fork
git clone --recursive 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
|