-
Notifications
You must be signed in to change notification settings - Fork 179
/
settings.json
32 lines (32 loc) · 1 KB
/
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
{
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 0,
"terminal.integrated.defaultProfile.windows": "Command Prompt",
"terminal.integrated.commandsToSkipShell": [
"explorer.newFile"
],
"editor.autoClosingBrackets": "never",
"editor.autoClosingQuotes": "never",
"editor.autoIndent": "keep",
"editor.minimap.enabled": false,
"editor.parameterHints.enabled": false,
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
},
"editor.suggestOnTriggerCharacters": false,
"editor.tabCompletion": "onlySnippets",
"editor.tabSize": 2,
"explorer.incrementalNaming": "smart",
"C_Cpp.default.compilerPath": "g++",
"C_Cpp.default.cppStandard": "c++20",
"C_Cpp.default.defines": [
"LOCAL",
"_GLIBCXX_DEBUG"
],
"C_Cpp.autoAddFileAssociations": false,
"telemetry.telemetryLevel": "off",
"workbench.startupEditor": "none",
"extensions.ignoreRecommendations": true
}