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

  • 相关阅读:
    js 判断字符串中是否包含某个字符串
    MySQL批量更新数据
    js实现字符串切割并转换成对象格式保存到本地
    C#用openfiledialog文件和savefileDialog打开和保存文件
    C#中e.Cancel,e.Handled的区别与应用
    登录窗体与主窗体的关闭
    C#中WinForm程序退出方法技巧总结
    c# 如何获取项目的根目录
    C# Winform中WndProc 函数作用
    SqlDataAdapter.Update批量数据更新
  • 原文地址:https://www.cnblogs.com/gispathfinder/p/14633121.html
Copyright © 2011-2022 走看看