You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For convenience, we recommend directly using the [Dev Container plugin](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) of VSCode. Here is `devcontainer.json`.
74
-
75
-
```json
76
-
{
77
-
"name": "godel-script",
78
-
"build": {
79
-
"context": "..",
80
-
"dockerfile": "./Dockerfile"
81
-
},
82
-
"customizations": {
83
-
"vscode": {
84
-
"extensions": [
85
-
"xaver.clang-format",
86
-
"twxs.cmake",
87
-
"ms-vscode.cmake-tools",
88
-
"vadimcn.vscode-lldb",
89
-
"llvm-vs-code-extensions.vscode-clangd"
90
-
],
91
-
"settings": {
92
-
"[cpp]": {
93
-
"editor.defaultFormatter": "xaver.clang-format"
94
-
},
95
-
"editor.formatOnSave": true,
96
-
"editor.formatOnPaste": true,
97
-
"cmake.generator": "Ninja"
98
-
}
99
-
}
100
-
},
101
-
"remoteUser": "root"
102
-
}
103
-
```
65
+
For convenience, we recommend directly using the [Dev Container plugin](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) of VSCode. The configuration files are in `godel-script/.devcontainer/`.
0 commit comments