-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
123 lines (122 loc) · 3.17 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"workbench.iconTheme": "material-icon-theme",
"todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^)((\\s+(!|\\?|\\*|\\-))?(\\s+\\[(\\S|\\s)\\])?|(\\s+(!|\\?|\\*|\\-)\\s+\\[.\\])?)\\s*($TAGS).*(\\n\\s*//\\s{2,}.*)*",
"todo-tree.highlights.enabled": true,
"todo-tree.general.tags": [
"TODO", "Todo", "todo",
"BUG", "Bug", "bug",
"FIX", "Fix", "fix",
"FIXME", "FixMe", "Fixme", "fixme",
"MARK", "Mark", "mark",
"CHECK", "Check", "check",
"DONE", "Done", "done"
],
"todo-tree.general.tagGroups": {
"Todo": [
"TODO", "Todo", "todo"
],
"Bug": [
"BUG", "Bug", "bug",
"FIX", "Fix", "fix",
"FIXME", "FixMe", "Fixme", "fixme"
],
"Mark": [
"MARK", "Mark", "mark"
],
"Check": [
"CHECK", "Check", "check"
],
"Done": [
"DONE", "Done", "done"
]
},
"todo-tree.highlights.defaultHighlight": {
"type": "text-and-comment"
},
"todo-tree.highlights.customHighlight": {
"Todo": {
"foreground": "#E9643A",
"icon": "checklist",
"iconColour": "#E9643A"
},
"Bug": {
"foreground": "#E93D58",
"icon": "bug",
"iconColour": "#E93D58"
},
"Mark": {
"foreground": "#3DAEE9",
"icon": "bookmark",
"iconColour": "#3DAEE9"
},
"Check": {
"foreground": "#926EE4",
"icon": "bookmark",
"iconColour": "#926EE4"
},
"Done": {
"foreground": "#3DD425",
"icon": "bookmark",
"iconColour": "#3DD425"
}
},
"todo-tree.tree.labelFormat": "${tag:uppercase} \t ${after} \t [${filename}]",
"todo-tree.tree.tooltipFormat": "${filename}:[${line}] in ${filepath}",
"better-comments.tags": [
{
"tag": "!",
"color": "#E93D58",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "?",
"color": "#3DAEE9",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "//",
"color": "#3DAEE9",
"strikethrough": true,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "*",
"color": "#00D3B8",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
}
],
"code-runner.executorMap": {
"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && konsole -e './$fileNameWithoutExt ; read line'",
"cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt && konsole -e './$fileNameWithoutExt ; read line'",
"csharp": "cd $dir && konsole -e 'dotnet run'"
},
"code-runner.runInTerminal": true,
"workbench.colorTheme": "GitHub Dark",
"terminal.external.linuxExec": "konsole",
"terminal.explorerKind": "external",
"csharp.debug.console": "externalTerminal"
}
// Red #E83D58
// Orange #E9643A
// Yellow #E8CB2D
// Green #3DD425
// Light Blue #00D3B8
// Blue #3DAEE9
// Light Purple #B875DC
// Purple #926EE4
// Grey #686B6F