-
Notifications
You must be signed in to change notification settings - Fork 0
/
setting.json
85 lines (76 loc) · 2.49 KB
/
setting.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
"editor.tokenColorCustomizations": {
"[Material Theme Ocean High Contrast]": {
"textMateRules": [
{
"scope": "entity.name.type.class",
"settings": {
"foreground": "#83ff83",
"fontStyle": ""
}
},
{
"scope": ["string", "constant.numeric", "constant.language"],
"settings": {
"foreground": "#FFCB6B",
"fontStyle": "italic"
}
},
{
"scope": ["keyword", "keyword.control", "keyword.other"],
"settings": {
"foreground": "#1fffff",
"fontStyle": "italic"
}
},
{
"scope": ["entity.name.function", "meta.function-call", "entity.name.method", "support.function"],
"settings": {
"foreground": "#5599ff",
"fontStyle": ""
}
},
{
"scope": ["storage.type", "storage.modifier"],
"settings": {
"foreground": "#ee98ff",
"fontStyle": "italic"
}
},
{
"scope": "variable",
"settings": {
"foreground": "#d6d5d5cc",
"fontStyle": "italic"
}
},
{
"scope": "entity.name",
"settings": {
"foreground": "#f08071",
"fontStyle": ""
}
}
]
}
},
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
"Git Bash": {
"source": "Git Bash"
},
"Command Promptd": {
"path": "C:\\Windows\\Sysnative\\cmd.exe",
"args": []
}
},