简体   繁体   中英

I can't find python json settings in vs code

I'm trying to edit python json settings to edit font size and stuff like that but whenever I open settings.json it opens something else

code:

{
"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
}

Just copy "editor.fontSize": 24 into your setting.json at the end for set the font-size to 24.

More about settings.json in Visual Studio Code , you can read here .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM