forked from segoon/upastebin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
48 lines (48 loc) · 1.56 KB
/
devcontainer.json
File metadata and controls
48 lines (48 loc) · 1.56 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "upastbin-develop",
"build": {
"dockerfile": "Dockerfile"
},
"workspaceMount": "source=${localWorkspaceFolder},target=/home/user/upastbin,type=bind",
"remoteUser": "user",
"workspaceFolder": "/home/user/upastbin",
"containerEnv": {
"SHELL": "/bin/bash",
"PREFIX": "${PREFIX:-~/.local}",
"CCACHE_DIR": "/home/user/.cache/ccache",
"CORES_DIR": "/cores"
},
"customizations": {
"vscode": {
"extensions": [
"llvm-vs-code-extensions.vscode-clangd",
"ms-vscode.cmake-tools",
"ms-vscode.makefile-tools",
"vadimcn.vscode-lldb",
"ms-azuretools.vscode-docker",
"Decodetalkers.neocmakelsp-vscode"
],
"settings": {
"cmake.automaticReconfigure": false,
"cmake.configureOnEdit": false,
"cmake.configureOnOpen": false,
"cmake.copyCompileCommands": "${workspaceFolder}/.vscode/compile_commands.json",
"clangd.path": "/usr/bin/clangd",
"clangd.arguments": [
"--background-index",
"--compile-commands-dir=.vscode",
"--clang-tidy",
"--completion-style=detailed",
"--header-insertion=never"
]
}
}
},
"mounts": [
{
"type": "bind",
"source": "/home/${env:USER}/.ssh",
"target": "/home/user/.ssh"
}
]
}