-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup-vscode.sh
47 lines (44 loc) · 1.13 KB
/
setup-vscode.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
#!/usr/bin/env zsh
setup_vscode() {
local PLUGINS_TO_INSTALL="alefragnani.Bookmarks
alexdima.copy-relative-path
andrewmarkle.primer-light
bradlc.vscode-tailwindcss
bungcip.better-toml
christian-kohler.npm-intellisense
christian-kohler.path-intellisense
codezombiech.gitignore
DavidAnson.vscode-markdownlint
dbaeumer.vscode-eslint
drKnoxy.eslint-disable-snippets
eamodio.gitlens
EditorConfig.EditorConfig
emmanuelbeziat.vscode-great-icons
esbenp.prettier-vscode
fabiospampinato.vscode-open-in-gittower
felipecaputo.git-project-manager
formulahendry.auto-close-tag
formulahendry.auto-rename-tag
hdevalke.rust-test-lens
heybourn.headwind
jeff-hykin.better-shellscript-syntax
matklad.rust-analyzer
nemesv.copy-file-name
nwallace.peep
oderwat.indent-rainbow
Orta.vscode-jest
richie5um2.vscode-sort-json
skyapps.fish-vscode
sleistner.vscode-fileutils
streetsidesoftware.code-spell-checker
tombonnike.vscode-status-bar-format-toggle
vadimcn.vscode-lldb
vscode-icons-team.vscode-icons
wayou.vscode-todo-highlight
wmaurer.change-case
zhuangtongfa.material-theme"
for i in ${PLUGINS_TO_INSTALL[@]}; do
code --install-extension "$i"
done
}
setup_vscode