forked from antfu/vscode-settings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
51 lines (51 loc) · 1.44 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
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.detectIndentation": true,
"editor.fontFamily": "MonoLisa",
"editor.fontLigatures": true,
"editor.fontSize": 11,
"editor.formatOnSave": true,
// When lineHeight is set to zero, VS Code will figure out the
// the height automatically based on the font
"editor.lineHeight": 0,
"editor.minimap.enabled": false,
"editor.tabCompletion": "on",
"editor.tabSize": 3,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "comment",
"settings": {
"fontStyle": "italic"
}
}
]
},
"editor.wordWrap": "on",
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"razor": "html",
"vue-html": "html"
},
"eslint.validate": [
"javascript",
"javascriptreact",
"vue"
],
"explorer.confirmDelete": false,
"files.autoSave": "afterDelay",
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"prettier.requireConfig": true,
"window.autoDetectColorScheme": true,
"window.zoomLevel": 1.25,
"workbench.colorCustomizations": {},
"workbench.colorTheme": "Catppuccin Mocha",
"workbench.editor.enablePreview": false,
"workbench.editor.showTabs": "single",
"workbench.preferredDarkColorTheme": "Catppuccin Mocha",
"workbench.preferredLightColorTheme": "Catppuccin Latte",
"workbench.sideBar.location": "right",
"workbench.statusBar.visible": false
}