prezto is outside stevset now

This commit is contained in:
Stefen Auris 2021-07-19 17:21:08 -04:00
parent 47da918cc4
commit 7fcc7fb2ab
2 changed files with 32 additions and 2 deletions

View file

@ -1,7 +1,7 @@
#!/bin/zsh
CPU_CORES=$(nproc --all)
#Initializes Prezto
git clone --recursive -j $CPU_CORES https://github.com/steveokard/prezto.git "$HOME/stevset/prezto/.zprezto"
git clone --recursive -j $CPU_CORES https://github.com/steveokard/prezto.git "$HOME/.zprezto"
#Remove old stuff
echo "....Creating symlinks"
@ -9,7 +9,7 @@ rm -rf ~/.zshrc ~/.zsh ~/.zprofile ~/.zlogin ~/.zlogout ~/.zpreztorc ~/.zshenv
#Make Environment Links, per github readme
setopt EXTENDED_GLOB
for rcfile in "${ZDOTDIR:-$HOME}"/stevset/prezto/.zprezto/runcoms/^README.md(.N); do
for rcfile in "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/^README.md(.N); do
ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile:t}"
done