zoukankan      html  css  js  c++  java
  • 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"
         }
    }

  • 相关阅读:
    Maven实战(六)依赖
    Maven实战(五)坐标详解
    Maven实战(四)生命周期
    Maven实战(三)Eclipse构建Maven项目
    Maven实战(二)构建简单Maven项目
    Maven实战(一)安装与配置
    哈佛图书馆自习室墙上的训言——觉得为时已晚的时候,恰恰是最早的时候——不是缺乏时间,而是缺乏努力
    JQuery中国省市区无刷新三级联动查询
    思科VSS配置指南
    思科IS-IS多区域和汇总配置
  • 原文地址:https://www.cnblogs.com/gispathfinder/p/14633121.html
Copyright © 2011-2022 走看看