From 73cac240e6b2b6c2a4e8836b6c558db7ca787d78 Mon Sep 17 00:00:00 2001 From: rydesun Date: Tue, 26 Jan 2021 15:37:04 +0800 Subject: [PATCH] Add script for updating zsh plugins --- .config/zsh/update.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 .config/zsh/update.sh 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.