-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.devcontainer.json
More file actions
34 lines (31 loc) · 1.19 KB
/
.devcontainer.json
File metadata and controls
34 lines (31 loc) · 1.19 KB
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
32
33
34
{
"name": "C++ Development Environment",
"dockerComposeFile": "docker-compose.yaml",
"service": "cpp-dev-srv",
"workspaceFolder": "/workspace",
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
"editor.formatOnSave": true,
"files.trimTrailingWhitespace": true,
"C_Cpp.clang_format_style": "file",
"C_Cpp.clang_format_fallbackStyle": "Google",
"C_Cpp.intelliSenseEngine": "default"
},
"extensions": [
"ms-vscode.cpptools",
"ms-vscode.cmake-tools",
"twxs.cmake",
"jeff-hykin.better-cpp-syntax",
"cschlosser.doxdocgen",
"matepek.vscode-catch2-test-adapter",
"ms-vscode.cpptools-extension-pack",
"xaver.clang-format"
]
}
},
"postCreateCommand": "echo 'C++ development environment is ready in vs code!'",
"remoteUser": "cppuser"
}