-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.devcontainer.json
36 lines (36 loc) · 1.49 KB
/
.devcontainer.json
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
{
"name": "PHP & Terraform & zaboal's enchancements",
"features": {
"ghcr.io/devcontainers/features/php:1": { "version": "8.2" },
"ghcr.io/devcontainers-extra/features/composer:1": {},
"ghcr.io/devcontainers-extra/features/terraform-asdf:2": {},
"ghcr.io/zaboal/dc/yc:latest": {}
},
"postCreateCommand": "find . -name 'vendor' -prune -o -name 'composer.json' -execdir composer install \\;",
"customizations": {
"vscode": {
"extensions": [
"bmewburn.vscode-intelephense-client",
"kokororin.vscode-phpfmt",
"hashicorp.terraform",
"github.copilot",
"pkief.material-icon-theme"
],
"settings": {
"chat.editing.alwaysSaveWithGeneratedChanges": true,
"explorer.confirmDragAndDrop": false,
"explorer.decorations.badges": true,
"explorer.decorations.colors": true,
"explorer.excludeGitIgnore": true,
"window.commandCenter": false,
"workbench.editor.editorActionsLocation": "hidden",
"workbench.editor.showTabs": "none",
"workbench.iconTheme": "material-icon-theme",
"workbench.layoutControl.enabled": false,
"workbench.settings.editor": "json",
"workbench.sideBar.location": "right",
"workbench.statusBar.visible": false
}
}
}
}