Last active
March 5, 2025 10:03
-
-
Save StatPan/72cb2f9e7bd4c9254bb26302430ee6b1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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