-
Notifications
You must be signed in to change notification settings - Fork 0
/
vscode_settings.json
62 lines (62 loc) · 1.81 KB
/
vscode_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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"C_Cpp.clang_format_fallbackStyle": "Google",
"C_Cpp.clang_format_style": "file",
"C_Cpp.codeAnalysis.clangTidy.enabled": true,
"C_Cpp.default.compilerPath": "/usr/bin/g++",
"C_Cpp.default.cppStandard": "c++17",
"C_Cpp.default.includePath": [
"${workspaceFolder}/**",
"/usr/include/**"
],
"C_Cpp.doxygen.generatedStyle": "/**",
"[cpp]": {
"editor.defaultFormatter": "ms-vscode.cpptools"
},
"cmake.configureOnOpen": false,
"cmake.showOptionsMovedNotification": false,
"editor.detectIndentation": false,
"editor.rulers": [
80,
120
],
"explorer.confirmDelete": false,
"git.autorefresh": true,
"git.confirmSync": false,
"gitlens.launchpad.indicator.enabled": false,
"indentRainbow.colors": [
"rgba(255, 255, 64, 0.5)",
"rgba(127, 255, 127, 0.5)",
"rgba(255, 127, 255, 0.5)",
"rgba(79, 236, 236, 0.5)"
],
"indentRainbow.errorColor": "rgba(255,255,255,0.05)",
"indentRainbow.indicatorStyle": "light",
"indentRainbow.lightIndicatorStyleLineWidth": 1,
"peacock.favoriteColors": [
{
"name": "Red",
"value": "#641414"
},
{
"name": "Blue",
"value": "#141464"
},
{
"name": "Green",
"value": "#146414"
},
{
"name": "Purple",
"value": "#3c1464"
}
],
"todo-tree.general.showActivityBarBadge": true,
"todo-tree.highlights.defaultHighlight": {
"type": "text"
},
"todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^[ \\t]*(-|\\d+.))\\s*($TAGS):",
"todo-tree.tree.expanded": true,
"todo-tree.tree.flat": true,
"workbench.colorTheme": "Default Dark Modern",
"workbench.iconTheme": "vscode-icons"
}