# HG changeset patch # User Meredith Howard # Date 1641758259 18000 # Node ID f1e5d30543ba825395943364bf8fe86ed65e3faa # Parent 72a7a0ffbce887b881dc654b13c7a43735725044 forget the minimal setup mode diff --git a/bin/homedir-setup b/bin/homedir-setup --- a/bin/homedir-setup +++ b/bin/homedir-setup @@ -1,11 +1,6 @@ #!/bin/bash set -euo pipefail -minimal=0 - -case ${1:-} in -m) minimal=1;; -esac - if [ ! -f .zshrc ]; then echo "Refusing to run without a .zshrc nearby" >&2 exit 1 @@ -29,15 +24,13 @@ clone_or_pull 'https://github.com/tarjoi zsh -i -c 'zgen update' || : -if [ "$minimal" -ne 1 ]; then - clone_or_pull 'https://github.com/asdf-vm/asdf' .asdf - source .asdf/asdf.sh +clone_or_pull 'https://github.com/asdf-vm/asdf' .asdf +source .asdf/asdf.sh - asdf plugin add perl || : - asdf plugin update --all +asdf plugin add perl || : +asdf plugin update --all - bin/setup-man || : -fi +bin/setup-man || : # Get rid of older stuff for OLD in .plenv .rbenv .ndenv; do