-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvscode-settings.json
More file actions
86 lines (84 loc) · 2.48 KB
/
vscode-settings.json
File metadata and controls
86 lines (84 loc) · 2.48 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
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
75
76
77
78
79
80
81
82
83
84
85
86
{
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"solidity.enabledAsYouTypeCompilationErrorCheck": false,
"solidity.enableLocalNodeCompiler": false,
"solidity.formatter": "none",
"headerSourceSwitch.mappings": [
{
"header": [
".h",
".hpp",
".hh",
".hxx"
],
"source": [
".cpp",
".c",
".cc",
".cxx",
".m",
".mm"
],
"name": "C++"
},
{
"header": [
".mli"
],
"source": [
".ml"
],
"name": "OCaml"
}
],
"typescript.updateImportsOnFileMove.enabled": "always",
"breadcrumbs.enabled": true,
"editor.renderWhitespace": "none",
"AllAutocomplete.cycleOpenDocumentsOnLaunch": true,
"editor.accessibilitySupport": "off",
"diffEditor.ignoreTrimWhitespace": false,
"remote.downloadExtensionsLocally": true,
"remote.SSH.configFile": "C:/Users/KohliVarun/.ssh/config",
"remote.SSH.path": "ssh.exe",
"remote.SSH.logLevel": "trace",
"remote.SSH.lockfilesInTmp": true,
"remote.SSH.suppressWindowsSshWarning": true,
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\wsl.exe",
"files.watcherExclude": {
"**/_build": true,
"**/_refroot": true,
"**/.git": true,
"**/*.exe": true,
"**/*.tsk": true,
"**/*.a": true,
"**/*.o": true,
"**/build": true,
"**/node_modules": true,
"**/refroot": true
},
"terminal.integrated.shell.linux": "/opt/bb/bin/bash",
"remote.SSH.useLocalServer": false,
"remote.SSH.enableDynamicForwarding": false,
"remote.SSH.enableAgentForwarding": false,
"remote.SSH.remoteServerListenOnSocket": true,
"C_Cpp.default.compilerPath": "/opt/bb/bin/clang",
"C_Cpp.configurationWarnings": "Disabled",
"C_Cpp.intelliSenseEngineFallback": "Enabled",
"files.exclude": {
"**/_build/**": true,
"**/_refroot/**": true,
"**/*.exe": true,
"**/*.o": true,
"**/*.tsk": true,
"**/build/**": true,
"**/refroot/**": true
},
"C_Cpp.workspaceSymbols": "All",
"git.ignoreLegacyWarning": true,
"remote.SSH.showLoginTerminal": true,
"workbench.editor.enablePreview": false,
}