Add script for updating zsh plugins

This commit is contained in:
rydesun 2021-01-26 15:37:04 +08:00
parent 48b27d9753
commit 73cac240e6

11
.config/zsh/update.sh Executable file
View file

@ -0,0 +1,11 @@
#!/bin/zsh -e
if command -v antibody &>/dev/null; then
echo Updating plugins...
antibody update
else
echo antibody is missing >&2
fi
echo
echo Done.