techthoughts2
9/28/2018 - 8:57 PM

VSCode Extensions

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
}