VSCode配置(二)


{
     "[json]": {
         "editor.defaultFormatter": "vscode.json-language-features"
     },
     "[html]": {
         "editor.defaultFormatter": "HookyQR.beautify"
     },
     "[javascript]": {
         "editor.defaultFormatter": "vscode.typescript-language-features"
     },
     "editor.minimap.enabled": false,
     "editor.fontSize": 18,
     "editor.tabSize": 2,
     "editor.defaultFormatter": "HookyQR.beautify",
     "[jsonc]": {
       "editor.defaultFormatter": "vscode.json-language-features"
     },
     "[scss]": {
       "editor.defaultFormatter": "michelemelluso.code-beautifier"
     },
     "editor.renderWhitespace": "none",
     "breadcrumbs.enabled": true,
     "editor.suggestSelection": "first",
     "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
     "[python]": {
       "editor.defaultFormatter": "ms-python.python"
     },
     "editor.detectIndentation": false,
     "python.jediEnabled": false,
     "editor.wordWrapColumn": 102400,
     "html.format.wrapLineLength": 10240,
     "terminal.integrated.shell.windows": "C:\Windows\System32\cmd.exe",
     "terminal.integrated.rendererType": "dom",
     "java.configuration.checkProjectSettingsExclusions": false,
     "python.languageServer": "Microsoft",
     "kite.showWelcomeNotificationOnStartup": false,   
     "python.formatting.autopep8Args": [
       "--indent-size=2",
       "--max-line-length=2048"
     ],
     "python.autoComplete.typeshedPaths": [
       "D:\Program Files\Python36\Scripts",
       "D:\Program Files\Python36\Lib\site-packages"
     ],
     "remote.SSH.remotePlatform": {
       "172.16.4.245": "linux"
     },
     "[cpp]": {
       "editor.defaultFormatter": "ms-vscode.cpptools"
     },
     "debug.onTaskErrors": "abort",
     "files.exclude": {
       "**/node_modules": true
     },
     "[glsl]": {
       "editor.defaultFormatter": "xaver.clang-format"
     },
     "python.defaultInterpreterPath": "D:/Program Files/Python36/python.exe",
     "python.pythonPath": "D:\Program Files\Python36\python.exe",
     "files.watcherExclude": {
       "**/.bloop": true,
       "**/.metals": true,
       "**/.ammonite": true
     },
     "java.home": "D:/GreenSoftware/Java/Java8X64/jdk-11.0.10",
     "metals.javaHome": "D:/GreenSoftware/Java/Java8X64/jdk-11.0.10",
     "metals.customRepositories": [
       "https://maven.aliyun.com/repository/central"
     ],
     "java.configuration.runtimes": [
       {
         "name": "JavaSE-1.8",
         "path": "D:/GreenSoftware/Java/Java8X64/jdk1.8.0_181",
       },
       {
         "name": "JavaSE-11",
         "path": "D:/GreenSoftware/Java/Java8X64/jdk-11.0.10",
       },
     ],
     "redhat.telemetry.enabled": true,
     "[java]": {
       "editor.defaultFormatter": "redhat.java"
     }
}

原文地址:https://www.cnblogs.com/gispathfinder/p/14633121.html