-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.settings.json
123 lines (116 loc) · 3.75 KB
/
user.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
// ! Default settings.json
{
"workbench.settings.applyToAllProfiles": [
/** 工作台 */
"workbench.iconTheme",
"workbench.startupEditor",
"workbench.editor.enablePreview",
"workbench.editorAssociations",
"workbench.activityBar.location",
// "workbench.preferredDarkColorTheme",
// "workbench.preferredLightColorTheme",
// "window.autoDetectColorScheme", /* 自动切换夜间主题 */
"window.commandCenter",
/** 编辑器 */
"editor.fontFamily",
"editor.fontLigatures",
"editor.renderControlCharacters",
"editor.suggestSelection",
"editor.cursorSmoothCaretAnimation",
"editor.cursorBlinking",
"editor.linkedEditing",
"editor.matchBrackets",
"editor.defaultFormatter",
"editor.fontSize",
/** 终端 */
"terminal.integrated.cursorBlinking",
"terminal.integrated.cursorStyle",
"terminal.integrated.cursorWidth",
"terminal.integrated.defaultProfile.windows",
"terminal.integrated.fontSize",
/** 其他 */
"security.workspace.trust.enabled",
"files.eol",
"explorer.confirmDelete",
"git.openRepositoryInParentFolders",
"extensions.ignoreRecommendations",
"material-icon-theme.activeIconPack",
"material-icon-theme.hidesExplorerArrows"
],
"workbench.colorTheme": "Eva Dark",
"workbench.preferredDarkColorTheme": "Eva Dark",
"workbench.preferredLightColorTheme": "Eva Light",
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "none",
"workbench.editor.enablePreview": false,
"workbench.activityBar.location": "top",
"workbench.editorAssociations": {
"*.md": "vscode.markdown.preview.editor"
},
"editor.fontFamily": "'CaskaydiaCove Nerd Font', 'Microsoft YaHei'",
"editor.renderControlCharacters": false,
"editor.fontLigatures": true,
"editor.suggestSelection": "first",
"editor.cursorSmoothCaretAnimation": "on",
"editor.cursorBlinking": "smooth",
"editor.linkedEditing": true,
"editor.matchBrackets": "never",
"editor.minimap.enabled": false,
"editor.fontSize": 13,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorWidth": 2,
"terminal.integrated.defaultProfile.windows": "Nushell",
"terminal.integrated.fontSize": 12,
"window.commandCenter": false,
"window.autoDetectColorScheme": true,
"debug.console.fontSize": 12,
"security.workspace.trust.enabled": false,
"extensions.ignoreRecommendations": true,
"breadcrumbs.enabled": false,
"files.eol": "\n",
"explorer.confirmDelete": false,
"git.openRepositoryInParentFolders": "never",
"material-icon-theme.activeIconPack": "react_redux",
"material-icon-theme.hidesExplorerArrows": true,
"files.associations": {
"*.json": "jsonc"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [80],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": "off"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}