-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode-settings.json
65 lines (65 loc) · 1.62 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
63
64
65
{
"workbench.colorTheme": "Default Light+",
"semantic-highlighting.highlightGlobals": true,
"python.envFile": "${workspaceFolder}/env",
"python.experiments.enabled": false,
"editor.fontFamily": "'JetBrains Mono', 'monospace', monospace",
"editor.fontSize": 16,
"editor.fontLigatures": true,
"editor.fontWeight": "400",
"semantic-highlighting.colors": [
"#800000",
"#808000",
"#800080",
"#008080",
"#00005f",
"#005f87",
"#0000af",
"#008787",
"#00af00",
"#5f0087",
"#5f8700",
"#870000",
"#8700af",
"#875fd7",
"#878700",
"#87af5f",
"#af005f",
"#af00ff",
"#af8700",
"#afaf00",
"#d75fd7",
"#d7afaf",
"#ff5faf"
],
"editor.minimap.enabled": false,
"vim.smartRelativeLine": true,
"editor.tokenColorCustomizations": {
"[Default Light+]": {
"keywords": "#FF6600",
"comments": "#696969",
"textMateRules": [
{
"scope": "constant.language",
"settings": {
"foreground": "#000"
}
}
]
}
},
"semantic-highlighting.highlightClasses": true,
"editor.formatOnSave": true,
"python.formatting.provider": "black",
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [
"g",
"e"
],
"commands": [
"editor.action.marker.next"
]
}
],
}