15 lines
351 B
Bash
15 lines
351 B
Bash
|
#!/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
|
||
|
|
||
|
install -vt $HOME/.zsh git/sundry/zsh
|
||
|
ln -vs zshrc $HOME/.zshrc
|
||
|
mv -v $HOME/zshenv .zshenv
|