-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevcontainer.json
48 lines (48 loc) · 1.18 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "dylanlangston.com",
"build": {
"dockerfile": "devcontainer.Dockerfile",
"target": "base",
"context": ".."
},
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {}
},
"containerUser": "vscode",
"postCreateCommand": "make setup-git-clone setup",
"runArgs": ["--volume=/var/lib/docker", "--privileged"],
"customizations": {
"vscode": {
"extensions": [
"svelte.svelte-vscode",
"ziglang.vscode-zig",
"vadimcn.vscode-lldb",
"ms-vscode.makefile-tools",
"oven.bun-vscode",
"ms-azuretools.vscode-docker",
"ms-vscode-remote.remote-containers",
"gitpod.gitpod-desktop",
"github.vscode-github-actions",
"GitHub.codespaces",
"bierner.markdown-preview-github-styles",
"bierner.markdown-mermaid",
"dtoplak.vscode-glsllint",
"rust-lang.rust-analyzer",
"tamasfe.even-better-toml",
"redhat.vscode-yaml",
"amazonwebservices.aws-toolkit-vscode",
"ms-python.python"
],
"settings": {
"zig.path": "",
"zig.zls.path": "",
"zig.initialSetupDone": true,
"svelte.enable-ts-plugin": true,
"glsllint.additionalStageAssociations": {
".fs": "frag",
".vs": "vert"
}
}
}
}
}