13 lines
236 B
Bash
Executable File
13 lines
236 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
ln -s $DOTFILES_ROOT/zprezto/.zprezto $HOME/
|
|
|
|
pushd ${ZDOTDIR:-$HOME}
|
|
|
|
setopt EXTENDED_GLOB
|
|
for rcfile in "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/^README.md(.N); do
|
|
ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile:t}"
|
|
done
|
|
|
|
popd
|