2024-05-20 20:44:02 -04:00
|
|
|
#!/usr/bin/zsh
|
|
|
|
|
|
|
|
# This is where my configurations live
|
|
|
|
REPO=https://git.momodomo.us/nichus/sundry.git
|
|
|
|
|
|
|
|
# First we're going to pull my version of the ZPLUG stuff
|
|
|
|
git clone https://github.com/nichus/zplug-fork $HOME/.zplug
|
|
|
|
|
|
|
|
mkdir git
|
|
|
|
git clone $REPO git/sundry
|
|
|
|
|
2024-05-20 21:04:26 -04:00
|
|
|
install -vd $HOME/.zsh/lib
|
2024-05-20 21:04:53 -04:00
|
|
|
install -v git/sundry/zsh/zshenv $HOME/.zshenv
|
|
|
|
install -v git/sundry/zsh/zshrc $HOME/.zsh/.zshrc
|
2024-05-20 21:04:26 -04:00
|
|
|
install -vt $HOME/.zsh/lib git/sundry/zsh/lib/*
|
2024-05-20 21:04:53 -04:00
|
|
|
ln -vs .zshrc $HOME/.zsh/zshrc
|