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."