-
Notifications
You must be signed in to change notification settings - Fork 0
/
pic18-q20-programmer.code-workspace
63 lines (63 loc) · 1.76 KB
/
pic18-q20-programmer.code-workspace
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"folders": [
{
"path": "./",
},
],
"settings": {
"search.exclude": {
"**/.cache": true,
"**/build": true,
"**/compile_commands.json": true
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/.cache": true,
"**/build": true,
"**/compile_commands.json": true
},
"scad-lsp.fmtStyle": "Microsoft",
"java.configuration.updateBuildConfiguration": "automatic",
"java.compile.nullAnalysis.mode": "automatic",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "bash",
"icon": "terminal-bash",
"args": [
"-l"
]
},
},
"terminal.integrated.defaultProfile.linux": "bash",
"files.associations": {
"mutex": "cpp",
"stdexcept": "cpp",
"iostream": "cpp",
"bitset": "cpp"
},
"cmake.copyCompileCommands": "${workspaceFolder}/compile_commands.json",
"cmake.debugConfig": {
"args": [
"--help",
"-f",
"${workspaceFolder}/MrHat.X.production.hex",
"--hex"
]
},
"clangd.arguments": [
"--query-driver=/usr/bin/arm*g*",
"--background-index",
"--completion-style=detailed",
"--header-insertion=iwyu",
"-j=4",
"--pch-storage=memory",
"--malloc-trim",
"--log=error"
]
}
}