-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
98 lines (98 loc) · 2.47 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
{
"explorer.openEditors.visible": 0,
"editor.snippetSuggestions": "top",
"emmet.showAbbreviationSuggestions": false,
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"workbench.colorTheme": "Just Black",
"workbench.iconTheme": "material-icon-theme",
"editor.fontLigatures": true,
"editor.fontFamily": "Anonymous Pro",
"terminal.integrated.fontSize": 14,
"editor.fontSize": 16,
"markdown.preview.fontSize": 36,
"files.autoSave": "off",
"editor.tabSize": 2,
"editor.detectIndentation": true,
"editor.minimap.enabled": false,
"workbench.startupEditor": "newUntitledFile",
"editor.suggestSelection": "first",
"diffEditor.ignoreTrimWhitespace": false,
"workbench.colorCustomizations": {
"[Just Black]": {
"sideBar.foreground": "#29b3b1",
"gitDecoration.modifiedResourceForeground": "#00AA00"
}
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": ["keyword.operator.logical"],
"settings": {
"fontStyle": ""
}
},
{
"scope": ["keyword.operator.logical"],
"settings": {
"fontStyle": ""
}
},
{
"name": "envKeys",
"scope": "string.quoted.double.env,source.env,constant.numeric.env",
"settings": {
"foreground": "#19354900"
}
},
{
"scope": ["keyword.operator.logical"],
"settings": {
"fontStyle": ""
}
},
{
"scope": ["keyword.operator.logical"],
"settings": {
"fontStyle": ""
}
},
{
"name": "envKeys",
"scope": "string.quoted.double.env,source.env,constant.numeric.env",
"settings": {
"foreground": "#19354900"
}
}
]
},
"window.zoomLevel": 1,
"files.exclude": {
"**/.git": false,
"**/.svn": false
}
}