The code and data behind xeiaso.net
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(devcontainer): add other missing dependencies

Signed-off-by: Xe Iaso <me@xeiaso.net>

+20 -9
+20 -7
.devcontainer/devcontainer.json
··· 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 }
-2
.vscode/extensions.json
··· 1 1 { 2 2 "recommendations": [ 3 3 "unifiedjs.vscode-mdx", 4 - "bbenoist.nix", 5 - "jnoortheen.nix-ide", 6 4 "dhall.dhall-lang", 7 5 "denoland.vscode-deno", 8 6 "bradlc.vscode-tailwindcss",