Skip to content

Instantly share code, notes, and snippets.

@MrPickles2009
Created March 16, 2021 19:56
Show Gist options
  • Save MrPickles2009/ca761e17faff4957115167e32cb9fd47 to your computer and use it in GitHub Desktop.
Save MrPickles2009/ca761e17faff4957115167e32cb9fd47 to your computer and use it in GitHub Desktop.
Install vs-code extensions (Windows)
$extensions = @(
'dbaeumer.vscode-eslint',
'eamodio.gitlens',
'HookyQR.beautify',
'johnpapa.vscode-peacock',
'karigari.chat',
'killalau.vscode-liquid-snippets',
'miramac.vscode-exec-node',
'ms-dotnettools.csharp',
'ms-python.python',
'ms-python.vscode-pylance',
'ms-toolsai.jupyter',
'ms-vscode-remote.remote-wsl',
'ms-vscode.cpptools',
'ms-vscode.powershell',
'ms-vscode.Theme-MarkdownKit',
'ms-vscode.Theme-MaterialKit',
'ms-vsliveshare.vsliveshare',
'ms-vsliveshare.vsliveshare-audio',
'ms-vsliveshare.vsliveshare-pack',
'msjsdiag.debugger-for-chrome',
'msjsdiag.debugger-for-edge',
'naumovs.color-highlight',
'neilding.language-liquid',
'octref.vetur'
)
for ( $i = 0; $i -lt $extensions.Length; $i++ )
{
$status = 'Installing ' + ($i + 1) + ' of ' + $extensions.Length + '...'
Write-Progress -Activity 'Installing vscode extensions' -Status $status -PercentComplete (($i + 1)/$extensions.Length*100)
code --install-extension $extensions[$i]
}
Write-Host "`n-------------------------------------`nFinished 😊`n-------------------------------------`n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment