-
Notifications
You must be signed in to change notification settings - Fork 10
/
o2as.code-workspace
74 lines (71 loc) · 2.27 KB
/
o2as.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
64
65
66
67
68
69
70
71
72
73
74
{
"folders": [
{
"path": "."
},
{
"path": "./wiki"
}
],
"settings": {
// Controls which editor is shown at startup, if none is restored from the previous session. Select 'none' to start without an editor, 'welcomePage' to open the Welcome page (default), 'newUntitledFile' to open a new untitled file (only opening an empty workspace).
"workbench.startupEditor": "newUntitledFile",
// If set to true, recommendations will not be fetched or shown unless specifically requested by the user.
"extensions.showRecommendationsOnlyOnDemand": false,
// If set to true, the notifications for extension recommendations will stop showing up.
"extensions.ignoreRecommendations": false,
// Controls how the editor should render whitespace characters, possibilities are 'none', 'boundary', and 'all'. The 'boundary' option does not render single spaces between words.
"editor.renderWhitespace": "all",
// When enabled, insert a final new line at the end of the file when saving it.
"files.insertFinalNewline": true,
// Path to Python, you can use a custom version of Python by modifying this setting to include the full path.
"python.pythonPath": "/usr/bin/python",
// Provider for formatting. Possible options include 'autopep8', 'black', and 'yapf'.
"python.formatting.provider": "autopep8",
// ROS distro name to use (kinetic, jade, ...).
"ros.distro": "kinetic",
"files.associations": {
"*.script": "python",
"*.ipp": "cpp",
"future": "cpp",
"*.txt": "shellscript",
"cctype": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"csignal": "cpp",
"cstdarg": "cpp",
"cstddef": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"cwctype": "cpp",
"atomic": "cpp",
"strstream": "cpp",
"*.tcc": "cpp",
"chrono": "cpp",
"codecvt": "cpp",
"condition_variable": "cpp",
"cstdint": "cpp",
"initializer_list": "cpp",
"iosfwd": "cpp",
"mutex": "cpp",
"ratio": "cpp",
"system_error": "cpp",
"thread": "cpp",
"typeindex": "cpp"
}
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-vscode.cpptools",
"PeterJausovec.vscode-docker",
"streetsidesoftware.code-spell-checker",
"eamodio.gitlens",
"ajshort.ros",
"ajshort.msg"
]
}
}