forked from adamrushuk/tools-install
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vscode-extensions.sh
executable file
·68 lines (65 loc) · 1.97 KB
/
vscode-extensions.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/env bash
# installs vscode extensions
# code --list-extensions
# vars
extensions=(
'aaron-bond.better-comments'
'alefragnani.Bookmarks'
# 'Azurite.azurite'
# 'AzurePolicy.azurepolicyextension'
# 'bencoleman.armview'
'bierner.markdown-preview-github-styles'
# 'bungcip.better-toml'
# 'cssho.vscode-svgviewer'
'DavidAnson.vscode-markdownlint'
'eamodio.gitlens'
'foxundermoon.shell-format'
# 'GrapeCity.gc-excelviewer'
# 'Gruntfuggly.todo-tree'
'hashicorp.terraform'
# 'humao.rest-client'
# 'janisdd.vscode-edit-csv'
'mhutchie.git-graph'
# 'mechatroner.rainbow-csv'
# 'ms-azuretools.vscode-azurefunctions'
# 'ms-azuretools.vscode-azureresourcegroups'
# 'ms-azuretools.vscode-bicep'
'ms-azuretools.vscode-docker'
# 'ms-dotnettools.vscode-dotnet-runtime'
'ms-kubernetes-tools.vscode-kubernetes-tools'
# 'ms-python.python'
# 'ms-python.vscode-pylance'
# 'ms-toolsai.jupyter'
# 'ms-toolsai.jupyter-renderers'
# 'ms-vscode.azure-account'
# 'ms-vscode.azurecli'
'ms-vscode.powershell'
# 'ms-vsliveshare.vsliveshare'
# 'ms-vsliveshare.vsliveshare-audio'
# 'ms-vsliveshare.vsliveshare-pack'
# 'msazurermtools.azurerm-vscode-tools'
'oderwat.indent-rainbow'
# 'pspester.pester-test'
'qcz.text-power-tools'
'rangav.vscode-thunder-client'
'redhat.ansible'
'redhat.vscode-commons'
'redhat.vscode-yaml'
'Remisa.shellman'
# 'richie5um2.vscode-sort-json'
'rogalmic.bash-debug'
# 'rosshamish.kuskus-kusto-syntax-highlighting'
# 'streetsidesoftware.code-spell-checker'
# 'tfsec.tfsec'
'timonwong.shellcheck'
'Tyriar.shell-launcher'
'vscode-icons-team.vscode-icons'
'wengerk.highlight-bad-chars'
'yzhang.markdown-all-in-one'
'ziyasal.vscode-open-in-github'
)
# install vscode extensions
for extension in "${extensions[@]}"; do
echo "Installing ${extension}..."
code --install-extension "${extension}"
done