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

  • 相关阅读:
    移动端rem切图
    在Vue中如何使用axios跨域访问数据
    如何使地图和柱状图联动
    dedecms 5.7 采集目标文章的发布时间 采集后变成当前本地时间
    PHP的内存限制 Allowed memory size of 134217728 bytes exhausted (tried to allocate 1099 bytes) in
    Web前端性能优化——如何提高页面加载速度
    jquery中链式调用原理
    jdk1.6以后 对synchronized锁做了哪些优化
    Synchronized的锁优化
    分布式缓存
  • 原文地址:https://www.cnblogs.com/gispathfinder/p/14633121.html
Copyright © 2011-2022 走看看