-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.json
86 lines (77 loc) · 2.42 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
{
//basic style
"editor.bracketPairColorization.enabled": true,
"editor.fontSize": 15,
"editor.fontWeight": "normal",
"editor.minimap.enabled": false,
"editor.wordWrap": "on",
"editor.formatOnType": true,
"editor.guides.bracketPairs": "active",
"workbench.iconTheme": "vscode-icons",
"glassit.alpha": 250,
"editor.suggestSelection": "first",
"files.autoSave": "afterDelay",
"liveServer.settings.donotShowInfoMsg": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.cursorBlinking": "expand",
"editor.cursorSmoothCaretAnimation": "on",
"explorer.compactFolders": false,
//vs code using font
"editor.fontFamily": " 'Cascadia Code', 'Operator Mono ', Consolas, 'Courier New', monospace",
// "editor.fontLigatures": true,
"editor.fontLigatures": "'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'zero', 'onum'",
// vs code font style
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
//following will be in italic (=FlottFlott)
"comment",
"entity.name.type.class", //class names
"keyword", //import, export, return…
"storage.modifier", //static keyword
"storage.type" //class keyword
],
"settings": {
"fontStyle": "italic bold "
}
}
]
},
//vs code "powermode extenstion settings
"powermode.enabled": true,
"powermode.combo.counterEnabled": "hide",
"powermode.combo.location": "off",
"powermode.shake.enabled": false,
//vs code prettier & ESlint extension setup
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll": false,
"source.sortImports": true
},
"eslint.rules.customizations": [{ "rule": "no-*", "severity": "off" }],
//terminal font
"terminal.integrated.fontFamily": "MesloLGS NF",
//vs code status & scroll bar
"workbench.colorCustomizations": {
"statusBar.background": "#230444c7",
"scrollbarSlider.background": "#41364ec7"
},
"editor.scrollbar.verticalScrollbarSize": 12,
// for reactjs
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"explorer.confirmDragAndDrop": false,
"editor.quickSuggestions": {
"strings": true
},
// show hidden file
"files.exclude": {
"**/.git": false
},
"workbench.colorTheme": "Dracula",
"explorer.confirmDelete": false
}