From a3b3b0a08cde757cc0fb97ffd6e0cf943b49da5c Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Thu, 9 Apr 2026 18:37:18 -0400 Subject: [PATCH] [bin] Add asdf python and git-cu to setup steps --- bin/.local/bin/setup.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/bin/.local/bin/setup.sh b/bin/.local/bin/setup.sh index c3e876d..ea2e8c7 100755 --- a/bin/.local/bin/setup.sh +++ b/bin/.local/bin/setup.sh @@ -363,3 +363,17 @@ if [[ -d "$DOOM_DIR" ]]; then log "Installing Doom Emacs..." "$DOOM_DIR/bin/doom" install 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."