-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
51 lines (41 loc) · 1.39 KB
/
settings.json
File metadata and controls
51 lines (41 loc) · 1.39 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
{
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 250,
"terminal.integrated.defaultProfile.windows": "Command Prompt",
"editor.minimap.enabled": false,
"workbench.startupEditor": "none",
"extensions.ignoreRecommendations": true,
"telemetry.telemetryLevel": "off",
"editor.fontLigatures": false,
"editor.renderWhitespace": "none",
"editor.renderControlCharacters": false,
"editor.guides.bracketPairs": "active",
"editor.autoClosingBrackets": "never",
"editor.autoClosingQuotes": "never",
"editor.autoIndent": "advanced",
"editor.parameterHints.enabled": false,
"editor.hover.enabled": false,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
},
"editor.suggestOnTriggerCharacters": true,
"editor.acceptSuggestionOnEnter": "on",
"editor.snippetSuggestions": "top",
"editor.tabCompletion": "on",
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"explorer.incrementalNaming": "smart",
"C_Cpp.default.compilerPath": "g++",
"C_Cpp.default.cppStandard": "c++20",
"C_Cpp.default.intelliSenseMode": "windows-gcc-x64",
"C_Cpp.autoAddFileAssociations": false,
"C_Cpp.errorSquiggles": "enabled",
"files.associations": {
"*.h": "cpp",
"*.hpp": "cpp",
"*.cc": "cpp"
}
}