generated from devcontainers/feature-starter
-
Notifications
You must be signed in to change notification settings - Fork 8
/
.devcontainer.json
27 lines (27 loc) · 977 Bytes
/
.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
{
"image": "mcr.microsoft.com/vscode/devcontainers/javascript-node:0-18",
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "fish"
},
"extensions": [
"mads-hartmann.bash-ide-vscode",
"DavidAnson.vscode-markdownlint",
"yzhang.markdown-all-in-one",
"timonwong.shellcheck",
"eamodio.gitlens",
"mhutchie.git-graph",
"kokakiwi.vscode-just",
"usernamehw.errorlens"
]
}
},
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/meaningful-ooo/devcontainer-features/fish": {},
"ghcr.io/guiyomh/features/vim": {},
"ghcr.io/guiyomh/features/just": {}
},
"postCreateCommand": "npm install -g @devcontainers/cli && fish -c \"fisher install pure-fish/pure\""
}