forked from argotorg/fe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
31 lines (31 loc) · 785 Bytes
/
devcontainer.json
File metadata and controls
31 lines (31 loc) · 785 Bytes
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
28
29
30
31
{
"name": "fe-lang-v2",
"image": "mcr.microsoft.com/devcontainers/rust:latest",
"features": {
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
},
"extensions": [
"GitHub.vscode-github-actions",
"ms-vsliveshare.vsliveshare",
"vadimcn.vscode-lldb",
"matklad.rust-analyzer",
"serayuzgur.crates",
"tamasfe.even-better-toml",
"usernamehw.errorlens",
"aaron-bond.better-comments",
"yzhang.markdown-all-in-one"
],
"settings": {
"explorer.compactFolders": false,
"editor.rulers": [
80
],
"workbench.colorTheme": "Default Dark+",
"workbench.preferredDarkColorTheme": "Monokai",
"workbench.colorCustomizations": {
"editorRuler.foreground": "#5f5f62"
},
"workbench.activityBar.location": "top"
}
}