Last active
May 31, 2019 02:01
-
-
Save alfredmyers/336ed20410acee6688f7ba7c85b5826f to your computer and use it in GitHub Desktop.
Gist for copying Visual Studio Code extensions
This file contains 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
code --list-extensions > vscode-extensions.txt |
This file contains 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 | |
curl https://gist.githubusercontent.com/alfredmyers/336ed20410acee6688f7ba7c85b5826f/raw/84afcdbb919e9a9912c73914c7859746e862259a/vscode-extensions.txt | xargs -L 1 code --install-extension |
This file contains 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
# Based on the code snippet found at https://stackoverflow.com/a/49398449/151249 | |
code --list-extensions | xargs -L 1 echo code --install-extension |
This file contains 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
DavidAnson.vscode-markdownlint | |
docsmsft.docs-article-templates | |
docsmsft.docs-markdown | |
docsmsft.docs-preview | |
EditorConfig.EditorConfig | |
GitHub.vscode-pull-request-github | |
ms-azuretools.vscode-azureappservice | |
ms-azuretools.vscode-azurefunctions | |
ms-azuretools.vscode-azurestorage | |
ms-azuretools.vscode-cosmosdb | |
ms-mssql.mssql | |
ms-vscode.azure-account | |
ms-vscode.azurecli | |
ms-vscode.cpptools | |
ms-vscode.csharp | |
ms-vscode.mono-debug | |
ms-vscode.powershell | |
ms-vscode.vscode-node-azure-pack | |
ms-vsts.team | |
msazurermtools.azurerm-vscode-tools | |
msjsdiag.debugger-for-chrome | |
PeterJausovec.vscode-docker | |
redhat.java | |
VisualStudioExptTeam.vscodeintellicode | |
vsciot-vscode.azure-iot-toolkit | |
vscjava.vscode-java-debug | |
vscjava.vscode-java-dependency | |
vscjava.vscode-java-pack | |
vscjava.vscode-java-test | |
vscjava.vscode-maven |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment