diff --git a/.config/zsh/update.sh b/.config/zsh/update.sh new file mode 100755 index 0000000..448cfca --- /dev/null +++ b/.config/zsh/update.sh @@ -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.