Skip to content

Commit

Permalink
fix: move VS Code customizations in devcontainer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
llamafilm committed Mar 6, 2024
1 parent 166d089 commit c0425f5
Showing 1 changed file with 18 additions and 14 deletions.
32 changes: 18 additions & 14 deletions addons/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,22 @@
"containerEnv": {
"WORKSPACE_DIRECTORY": "${containerWorkspaceFolder}"
},
"extensions": ["timonwong.shellcheck", "esbenp.prettier-vscode"],
"mounts": [ "type=volume,target=/var/lib/docker" ],
"settings": {
"terminal.integrated.profiles.linux": {
"zsh": {
"path": "/usr/bin/zsh"
"customizations": {
"vscode": {
"extensions": ["timonwong.shellcheck", "esbenp.prettier-vscode"],
"settings": {
"terminal.integrated.profiles.linux": {
"zsh": {
"path": "/usr/bin/zsh"
}
},
"terminal.integrated.defaultProfile.linux": "zsh",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"files.trimTrailingWhitespace": true
}
}
},
"terminal.integrated.defaultProfile.linux": "zsh",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"files.trimTrailingWhitespace": true
}
}
},
"mounts": [ "type=volume,target=/var/lib/docker" ]
}

0 comments on commit c0425f5

Please sign in to comment.