[bin] Add asdf python and git-cu to setup steps

This commit is contained in:
2026-04-09 18:37:18 -04:00
parent 273d521484
commit a3b3b0a08c

View File

@ -363,3 +363,17 @@ if [[ -d "$DOOM_DIR" ]]; then
log "Installing Doom Emacs..." log "Installing Doom Emacs..."
"$DOOM_DIR/bin/doom" install "$DOOM_DIR/bin/doom" install
fi fi
# -------- asdf plugins --------
if have asdf; then
log "Configuring asdf plugins..."
asdf plugin add python || true
fi
# -------- Python tools --------
if have pip; then
log "Installing Python tools..."
pip install git-cu || true
fi
log "Done."