|
4 | 4 | "name": "Dev",
|
5 | 5 | // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
6 | 6 | "image": "mcr.microsoft.com/devcontainers/base:bookworm",
|
7 |
| - |
8 | 7 | // Features to add to the dev container. More info: https://containers.dev/features.
|
9 | 8 | "features": {
|
10 | 9 | "ghcr.io/devcontainers/features/go:1": {},
|
11 | 10 | "ghcr.io/devcontainers/features/node:1": {},
|
12 | 11 | "ghcr.io/xe/devcontainer-features/deno:1.2.1": {},
|
13 | 12 | "ghcr.io/xe/devcontainer-features/fish:0.1.1": {},
|
14 |
| - "ghcr.io/devcontainer-community/devcontainer-features/atuin.sh:1": {} |
| 13 | + "ghcr.io/devcontainer-community/devcontainer-features/atuin.sh:1": {}, |
| 14 | + "ghcr.io/devcontainers-extra/features/protoc:1": {}, |
| 15 | + "ghcr.io/mrsimonemms/devcontainers/buf:1": {}, |
| 16 | + "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}, |
| 17 | + "ghcr.io/michidk/devcontainers-features/typst:1": {} |
15 | 18 | },
|
16 | 19 | "mounts": [
|
17 | 20 | "source=${localEnv:HOME}${localEnv:USERPROFILE}/.local/share/atuin,target=/home/vscode/.local/share/atuin,type=bind,consistency=cached"
|
18 | 21 | ],
|
19 |
| - |
20 | 22 | // Use 'forwardPorts' to make a list of ports inside the container available locally.
|
21 |
| - "forwardPorts": [3000] |
22 |
| - |
| 23 | + "forwardPorts": [3000], |
23 | 24 | // Configure tool-specific properties.
|
24 |
| - // "customizations": {}, |
25 |
| - |
| 25 | + "customizations": { |
| 26 | + "vscode": { |
| 27 | + "extensions": [ |
| 28 | + "unifiedjs.vscode-mdx", |
| 29 | + "dhall.dhall-lang", |
| 30 | + "denoland.vscode-deno", |
| 31 | + "bradlc.vscode-tailwindcss", |
| 32 | + "ronnidc.nunjucks", |
| 33 | + "streetsidesoftware.code-spell-checker", |
| 34 | + "zxh404.vscode-proto3", |
| 35 | + "xaver.clang-format" |
| 36 | + ] |
| 37 | + } |
| 38 | + } |
26 | 39 | // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
27 | 40 | // "remoteUser": "root"
|
28 | 41 | }
|
0 commit comments