List of Visual Studio Code extensions that I am currently using. Heavy focus with PowerShell development and AWS CloudFormation.
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
<# | |
CoenraadS.bracket-pair-colorizer-2 | |
DanielThielking.aws-cloudformation-yaml | |
DavidAnson.vscode-markdownlint | |
DotJoshJohnson.xml | |
PKief.material-icon-theme | |
SirTori.indenticator | |
Tyriar.shell-launcher | |
aaron-bond.better-comments | |
almenon.arepl | |
amazonwebservices.aws-toolkit-vscode | |
aws-scripting-guy.cform | |
ban.spellright | |
bierner.markdown-preview-github-styles | |
eamodio.gitlens | |
emilast.LogFileHighlighter | |
formulahendry.code-runner | |
hbenl.vscode-test-explorer | |
hediet.vscode-drawio | |
kddejong.vscode-cfn-lint | |
littlefoxteam.vscode-python-test-adapter | |
mechatroner.rainbow-csv | |
ms-dotnettools.csharp | |
ms-mssql.mssql | |
ms-python.python | |
ms-python.vscode-pylance | |
ms-toolsai.jupyter | |
ms-vscode.powershell | |
njpwerner.autodocstring | |
nobuhito.printcode | |
oderwat.indent-rainbow | |
redhat.vscode-yaml | |
ritwickdey.LiveServer | |
ryanluker.vscode-coverage-gutters | |
ryanolsonx.snippet-creator | |
ryu1kn.partial-diff | |
shd101wyy.markdown-preview-enhanced | |
tuxtina.json2yaml | |
usernamehw.errorlens | |
vangware.dark-plus-material | |
vincentkos.snippet-creator | |
wmontalvo.vsc-jsonsnippets | |
woodywoodsta.vscode-material-syntax-dark | |
#> | |
$extensionList = ( | |
'CoenraadS.bracket-pair-colorizer-2', | |
'DanielThielking.aws-cloudformation-yaml', | |
'DavidAnson.vscode-markdownlint', | |
'DotJoshJohnson.xml', | |
'PKief.material-icon-theme', | |
'SirTori.indenticator', | |
'Tyriar.shell-launcher', | |
'aaron-bond.better-comments', | |
'almenon.arepl', | |
'amazonwebservices.aws-toolkit-vscode', | |
'aws-scripting-guy.cform', | |
'ban.spellright', | |
'bierner.markdown-preview-github-styles', | |
'eamodio.gitlens', | |
'emilast.LogFileHighlighter', | |
'formulahendry.code-runner', | |
'hbenl.vscode-test-explorer', | |
'hediet.vscode-drawio', | |
'kddejong.vscode-cfn-lint', | |
'littlefoxteam.vscode-python-test-adapter', | |
'mechatroner.rainbow-csv', | |
'ms-dotnettools.csharp', | |
'ms-mssql.mssql', | |
'ms-python.python', | |
'ms-python.vscode-pylance', | |
'ms-toolsai.jupyter', | |
'ms-vscode.powershell', | |
'njpwerner.autodocstring', | |
'nobuhito.printcode', | |
'oderwat.indent-rainbow', | |
'redhat.vscode-yaml', | |
'ritwickdey.LiveServer', | |
'ryanluker.vscode-coverage-gutters', | |
'ryanolsonx.snippet-creator', | |
'ryu1kn.partial-diff', | |
'shd101wyy.markdown-preview-enhanced', | |
'tuxtina.json2yaml', | |
'usernamehw.errorlens', | |
'vangware.dark-plus-material', | |
'vincentkos.snippet-creator', | |
'wmontalvo.vsc-jsonsnippets', | |
'woodywoodsta.vscode-material-syntax-dark' | |
) | |
foreach ($Extension in $ExtensionList) { | |
code --install-extension $Extension | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment