Skip to content

Instantly share code, notes, and snippets.

@StatPan
Last active March 5, 2025 10:03
Show Gist options
  • Select an option

  • Save StatPan/72cb2f9e7bd4c9254bb26302430ee6b1 to your computer and use it in GitHub Desktop.

Select an option

Save StatPan/72cb2f9e7bd4c9254bb26302430ee6b1 to your computer and use it in GitHub Desktop.
#!/bin/bash
# extension ID for vscode
extensions=(
"ms-python.python"
"ms-python.isort"
"ms-python.pylint"
"ms-python.vscode-pylance"
"ms-python.debugpy"
"ms-toolsai.jupyter"
"njpwerner.autodocstring"
"mgesbert.python-path"
"njqdev.vscode-python-typehint"
# ... add extension id
)
# install extensions
for ext in "${extensions[@]}"; do
code --install-extension "$ext"
done
echo "extension install completed"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment