Skip to content

Instantly share code, notes, and snippets.

@weehong-1
Last active April 21, 2026 17:00
Show Gist options
  • Select an option

  • Save weehong-1/898ca332f8c0b2e7955f970767a8f69b to your computer and use it in GitHub Desktop.

Select an option

Save weehong-1/898ca332f8c0b2e7955f970767a8f69b to your computer and use it in GitHub Desktop.

The Installation Commands

Option 1: Standard Installation (Default Profile)

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() } }

Option 2: Custom Profile Installation

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() } }
docker.docker
github.copilot-chat
github.github-vscode-theme
ms-vscode-remote.vscode-remote-extensionpack
pkief.material-icon-theme
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment