Use these commands to install the extensions to your default VS Code setup.
macOS / Linux:
curl -s "https://gist.githubusercontent.com/weehong-1/898ca332f8c0b2e7955f970767a8f69b/raw/extensions.txt" | xargs -L 1 code --install-extension
(Note: The -s flag tells curl to run silently without cluttering your terminal with download progress bars).
Windows (PowerShell):
(Invoke-RestMethod -Uri "https://gist.githubusercontent.com/weehong-1/898ca332f8c0b2e7955f970767a8f69b/raw/extensions.txt") -split "`n" | ForEach-Object { if ($_.Trim() -ne "") { code --install-extension $_.Trim() } }
Use these commands to install the extensions into a specific, isolated VS Code profile. This is great for keeping project-specific tools separate.
Important: Replace
"YourProfileName"with your actual profile name. If the profile name contains spaces, keep the quotation marks. If the profile doesn't exist, VS Code will automatically create it for you.
macOS / Linux:
curl -s "https://gist.githubusercontent.com/weehong-1/898ca332f8c0b2e7955f970767a8f69b/raw/extensions.txt" | xargs -L 1 code --profile "YourProfileName" --install-extension
Windows (PowerShell):
(Invoke-RestMethod -Uri "https://gist.githubusercontent.com/weehong-1/898ca332f8c0b2e7955f970767a8f69b/raw/extensions.txt") -split "`n" | ForEach-Object { if ($_.Trim() -ne "") { code --profile "YourProfileName" --install-extension $_.Trim() } }