下面是我自己用的 vscode 的配置,需要的朋友可以参考。
vscode 的默认配置文件位于 %appdata%\code\User\settings.json
, 如果需要使用我的配置,可以复制下面的内容,然后打开你的配置文件,删掉里面的所有内容,粘贴我的配置内容,最后保存即可。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{
"editor.accessibilitySupport": "on",
"editor.quickSuggestions": {
"other": "off"
},
"editor.suggestOnTriggerCharacters": false,
"accessibility.signals.sounds.volume": 100,
"accessibility.signals.lineHasError": {
"sound": "on",
"announcement": "off"
},
"accessibility.signals.lineHasWarning": {
"sound": "on",
"announcement": "off"
},
"workbench.startupEditor": "none",
"window.menuBarVisibility": "toggle"
}
|