-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall_vscode_extensions.zsh
44 lines (41 loc) · 1.04 KB
/
install_vscode_extensions.zsh
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
#!/usr/bin/zsh
extension_list=(
aaron-bond.better-comments
arcticicestudio.nord-visual-studio-code
eamodio.gitlens
enkia.tokyo-night
esbenp.prettier-vscode
GulajavaMinistudio.mayukaithemevsc
ms-azuretools.vscode-docker
ms-python.python
ms-python.vscode-pylance
ms-toolsai.jupyter
PKief.material-icon-theme
sainnhe.gruvbox-material
vscodevim.vim
wesbos.theme-cobalt2
hashicorp.terraform
ms-kubernetes-tools.vscode-kubernetes-tools
ms-toolsai.jupyter-keymap
ms-vscode.remote-explorer
ms-vscode-remote.remote-containers
ms-vscode-remote.remote-ssh
ms-vscode-remote.remote-ssh-edit
rangav.vscode-thunder-client
redhat.vscode-yaml
quarto.quarto
)
cpp_extension=(
cschlosser.doxdocgen
jeff-hykin.better-cpp-syntax
ms-vscode.cmake-tools
ms-vscode.cpptools
ms-vscode.cpptools-extension-pack
twxs.cmake
)
for i in ${extension_list[@]}; do
code --install-extension "$i"
done
for i in $(cpp_extension[@])}; do
code --install-extension "$i"
done