Skip to content

Commit 00a5fee

Browse files
committed
fix(devcontainer): add other missing dependencies
Signed-off-by: Xe Iaso <[email protected]>
1 parent da1610f commit 00a5fee

File tree

2 files changed

+20
-9
lines changed

2 files changed

+20
-9
lines changed

.devcontainer/devcontainer.json

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,38 @@
44
"name": "Dev",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
66
"image": "mcr.microsoft.com/devcontainers/base:bookworm",
7-
87
// Features to add to the dev container. More info: https://containers.dev/features.
98
"features": {
109
"ghcr.io/devcontainers/features/go:1": {},
1110
"ghcr.io/devcontainers/features/node:1": {},
1211
"ghcr.io/xe/devcontainer-features/deno:1.2.1": {},
1312
"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": {}
1518
},
1619
"mounts": [
1720
"source=${localEnv:HOME}${localEnv:USERPROFILE}/.local/share/atuin,target=/home/vscode/.local/share/atuin,type=bind,consistency=cached"
1821
],
19-
2022
// Use 'forwardPorts' to make a list of ports inside the container available locally.
21-
"forwardPorts": [3000]
22-
23+
"forwardPorts": [3000],
2324
// 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+
}
2639
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
2740
// "remoteUser": "root"
2841
}

.vscode/extensions.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
22
"recommendations": [
33
"unifiedjs.vscode-mdx",
4-
"bbenoist.nix",
5-
"jnoortheen.nix-ide",
64
"dhall.dhall-lang",
75
"denoland.vscode-deno",
86
"bradlc.vscode-tailwindcss",

0 commit comments

Comments
 (0)