Skip to content

Instantly share code, notes, and snippets.

@techthoughts2
Last active December 2, 2022 17:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save techthoughts2/0ab339006fcf27d1ad67f9e06449c577 to your computer and use it in GitHub Desktop.
Save techthoughts2/0ab339006fcf27d1ad67f9e06449c577 to your computer and use it in GitHub Desktop.
List of Visual Studio Code extensions that I am currently using. Heavy focus with PowerShell development and AWS CloudFormation.
<#
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