-
-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathdevcontainer.json
More file actions
23 lines (23 loc) · 842 Bytes
/
devcontainer.json
File metadata and controls
23 lines (23 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"$schema": "https://raw.githubusercontent.com/devcontainers/spec/refs/heads/main/schemas/devContainer.base.schema.json",
"name": "nvim-java",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/java:1": {},
"ghcr.io/devcontainers/features/python:1": {},
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/devcontainers-extra/features/wget-apt-get:1": {},
"ghcr.io/duduribeiro/devcontainer-features/neovim:1": {
"version": "nightly"
},
"ghcr.io/devcontainers-extra/features/springboot-sdkman:2": {},
"ghcr.io/devcontainers-extra/features/fzf:1": {}
},
"postCreateCommand": "bash .devcontainer/setup.sh",
"customizations": {
"vscode": {
"extensions": ["sumneko.lua"]
}
}
}