kjuulh
31d7ef27a8
Add bin/docker-traverse.sh Add bin/exec-sanity.sh Add bin/lunardev.sh Add bin/record.sh Add bin/restart-builds-drone.sh Add bin/run-dosier.sh Add bin/sanity.sh Add bin/scan-for-bad-indexes.sh Add bin/ssh-agent.sh Add bin/terraform.sh Add bin/tmux.sh Add bin/update-vault.sh Add bin/zimfwupdate.sh
22 lines
413 B
Bash
22 lines
413 B
Bash
#!/usr/bin/env zsh
|
|
|
|
function refresh_zimfw() {
|
|
echo "refreshing zimfw / zplug"
|
|
cd ~/git/github.com/lunarway/lw-zsh/
|
|
echo "pulling changes"
|
|
git pull origin master --rebase
|
|
git push -f
|
|
cd
|
|
cd .zim/modules
|
|
echo "refreshing zim"
|
|
rm -rf lw-zsh
|
|
echo "installing new updates"
|
|
zimfw install
|
|
cd
|
|
echo "done refreshing zimfw / zplug"
|
|
echo "refreshing zsh"
|
|
zsh
|
|
}
|
|
|
|
|