Fri, 05 Aug 2022 20:56:17 -0500
Update for newer configs, use autostash
#!/bin/bash set -euo pipefail source .lib/sh/util.sh [ -f .zshrc ] || die "Refusing to run without a .zshrc nearby" git --version >/dev/null || die "Please install git!" clone_or_pull 'https://github.com/tarjoilija/zgen.git' .zgen zsh -i -c 'zgen update' || : clone_or_pull 'https://github.com/asdf-vm/asdf' .asdf source .asdf/asdf.sh asdf plugin add perl 'https://github.com/merrilymeredith/asdf-perl.git' || : asdf plugin update --all bin/setup-man || : # Get rid of older stuff for OLD in .plenv .rbenv .ndenv; do if [ -e $OLD ]; then warn "Pruning $OLD" rm -rf $OLD fi done