-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode-server-settings.json
49 lines (49 loc) · 1.44 KB
/
vscode-server-settings.json
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
{
"C_Cpp.intelliSenseCacheSize": 512,
"git.ignoreLimitWarning": true,
"files.exclude": {
"*.a": true,
"*.so": true,
"*.o": true,
"*.tsk": true,
"**/_build": true,
"**/_refroot": true,
"**/.ignore": true,
"**/build": true,
"**/refroot": true
},
"files.watcherExclude": {
"**/_build": true,
"**/_refroot": true,
"**/.git": true,
"**/*.exe": true,
"**/*.tsk": true,
"**/*.a": true,
"**/*.o": true,
"**/build": true,
"**/node_modules": true,
"**/refroot": true
},
"ocaml-formatter.profile": "bloomberg",
"ocaml-formatter.ocamlformat-path": "/opt/bb/bin/ocamlformat",
"reason.path.env": "/opt/bb/bin/env",
"reason.path.ocamlfind": "/opt/bb/bin/ocamlfind",
"reason.path.ocamlmerlin": "/opt/bb/bin/ocamlmerlin",
"reason.path.ocpindent": "/opt/bb/bin/ocp-indent",
"reason.diagnostics.tools": [
"merlin"
],
"http.proxy": "http://devproxy.bloomberg.com:82",
"http.proxyStrictSSL": false,
"http.proxySupport": "override",
"files.autoSave": "afterDelay",
"editor.suggestSelection": "first",
"editor.formatOnSave": true,
"clang-format.executable": "/opt/bb/bin/clang-format",
"[cpp]": {
"editor.defaultFormatter": "xaver.clang-format",
},
"[ocaml]": {
"editor.defaultFormatter": "badochov.ocaml-formatter",
}
}