-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvscode-extensions.sh
executable file
·63 lines (60 loc) · 1.86 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
#!/usr/bin/env bash
# installs vscode extensions
# code --list-extensions
# vars
extensions=(
'aaron-bond.better-comments'
'alefragnani.Bookmarks'
# 'azapi-vscode.azapi'
'bierner.markdown-preview-github-styles'
'DavidAnson.vscode-markdownlint'
'eamodio.gitlens'
'foxundermoon.shell-format'
'github.vscode-github-actions'
# 'GitLab.gitlab-workflow'
'Gruntfuggly.todo-tree'
'hashicorp.terraform'
'humao.rest-client'
# 'mark-wiemer.vscode-autohotkey-plus-plus'
'mechatroner.rainbow-csv'
'mhutchie.git-graph'
# '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-aks-tools'
# 'ms-kubernetes-tools.vscode-kubernetes-tools'
# 'ms-python.black-formatter'
# 'ms-python.python'
# 'ms-python.vscode-pylance'
# 'ms-toolsai.jupyter'
# 'ms-toolsai.jupyter-keymap'
# 'ms-toolsai.jupyter-renderers'
# 'ms-toolsai.vscode-jupyter-cell-tags'
# 'ms-toolsai.vscode-jupyter-slideshow'
'ms-vscode.azure-account'
'ms-vscode.powershell'
'msazurermtools.azurerm-vscode-tools'
'oderwat.indent-rainbow'
'PascalReitermann93.vscode-yaml-sort'
'qcz.text-power-tools'
'redhat.ansible'
'redhat.vscode-commons'
'redhat.vscode-yaml'
'Remisa.shellman'
# 'rogalmic.bash-debug'
'streetsidesoftware.code-spell-checker'
'szTheory.vscode-packer-powertools'
# 'tamasfe.even-better-toml'
'timonwong.shellcheck'
'Tyriar.shell-launcher'
'vscode-icons-team.vscode-icons'
'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