We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 059a64f commit c48135aCopy full SHA for c48135a
vscode/main.sh
@@ -14,3 +14,17 @@ log "Setting up VSCode"
14
log "Copying VSCode settings"
15
FILE_NAME="settings.json"
16
cp ./vscode/$FILE_NAME "$HOME"/Library/Application\ Support/Code/User/$FILE_NAME
17
+
18
+log "Installing VSCode extensions"
19
20
+extensions=(
21
+ "bradlc.vscode-tailwindcss"
22
+ "eamodio.gitlens"
23
+ "esbenp.prettier-vscode"
24
+ "jakebecker.elixir-ls"
25
+ "phoenixframework.phoenix"
26
+)
27
28
+for ext in "${extensions[@]}"; do
29
+ code --install-extension "$ext"
30
+done
0 commit comments