17 lines
463 B
Bash
17 lines
463 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 -vd $HOME/.zsh/lib
|
|
install -v $HOME/.zshenv git/sundry/zsh/zshenv
|
|
install -v $HOME/.zsh/.zshrc git/sundry/zsh/zshrc
|
|
install -vt $HOME/.zsh/lib git/sundry/zsh/lib/*
|
|
ln -vs zshrc $HOME/.zsh/.zshrc
|