From 8a8699bf0c6f8cf77903e110ea226c372ec50899 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Fri, 9 Dec 2022 16:23:00 +0200 Subject: [PATCH] antigen updater, macOS defaults setter --- local/bin/dotfiles | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/local/bin/dotfiles b/local/bin/dotfiles index 88de34d..ef5112f 100755 --- a/local/bin/dotfiles +++ b/local/bin/dotfiles @@ -24,11 +24,19 @@ function section_install USAGE_PREFIX="Usage: $0 install" case "$1" in + antigen) + curl -L git.io/antigen > "$DOTFILES/config/antigen.zsh" && echo "🎉 Done!" + ;; + defaults) + bash "$DOTFILES/scripts/set-defaults.sh" && echo "🎉 Done!" + ;; gh-extensions) bash "$DOTFILES/scripts/gh-extensions.sh" && echo "🎉 Done!" ;; *) - echo "$USAGE_PREFIX [gh-extensions]" + echo "$USAGE_PREFIX [antigen | defaults | gh-extensions]" + echo " * antigen: Updates the antigen.zsh file" + echo " * defaults: Setup nice macOS defaults" echo " * gh-extensions: Install GitHub CLI Extensions" ;; esac