-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
73 lines (69 loc) · 1.94 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
{
//General edit config
"editor.tabSize": 2,
"editor.minimap.enabled": false,
//Font config
"editor.fontFamily": "'JetBrainsMono Nerd Font'",
"editor.fontSize": 15.5,
"editor.fontWeight": "normal",
"editor.fontLigatures": true,
//Theming
"workbench.colorTheme": "Dracula",
"workbench.iconTheme": "material-icon-theme",
"workbench.preferredDarkColorTheme": "Gruvbox Dark Hard",
"workbench.productIconTheme": "material-product-icons",
//Sidebar location
"workbench.sideBar.location": "left",
//Italic style
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
//following will be in italic (=FlottFlott)
"comment",
"entity.name.type.class", //class names
"keyword", //import, export, return…
"constant", //String, Number, Boolean…, this, super
"storage.modifier", //static keyword
"storage.type.class.js" //class keyword
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
//following will be excluded from italics (VSCode has some defaults for italics)
"invalid",
"keyword.operator",
"constant.numeric.css",
"keyword.other.unit.px.css",
"constant.numeric.decimal.js",
"constant.numeric.json"
],
"settings": {
"fontStyle": ""
}
}
]
},
"terminal.integrated.env.linux": {},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"[cpp]": {
"editor.defaultFormatter": "xaver.clang-format"
},
"editor.cursorBlinking": "smooth",
"[xml]": {
"editor.defaultFormatter": "DotJoshJohnson.xml"
}
}