我在 vs 代码中找不到 python json 设置

I can't find python json settings in vs code

我正在尝试编辑 python json 设置以编辑字体大小和类似的东西,但是每当我打开 settings.json 它会打开其他东西

代码:

{
"workbench.editorAssociations": {
    "*.ipynb": "jupyter.notebook.ipynb",
    "*.assets": "default"
},
"java.home": "C:\Program Files\Java\jdk-16.0.1",
"java.help.firstView": "gettingStarted",
"files.exclude": {
    "**/.classpath": true,
    "**/.project": true,
    "**/.settings": true,
    "**/.factorypath": true
},
"cSpell.ignoreWords": [

],
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "One Dark Pro Darker",
"security.workspace.trust.untrustedFiles": "open",
"editor.unicodeHighlight.invisibleCharacters": false,
"python.terminal.activateEnvironment": false
}

只需将 "editor.fontSize": 24 复制到您的 setting.json 最后,将 font-size 设置为 24。

更多关于settings.json的内容请见Visual Studio代码,您可以阅读here