• vscode的settings.json配置文件


    ######################

    {
      "tabnine.experimentalAutoImports": true,
      "files.autoSave": "off",
      "[go]": {
        "breadcrumbs.showArrays": true,
        "breadcrumbs.showClasses": true,
        "breadcrumbs.showConstructors": true,
        "breadcrumbs.showFields": true
      },
      "git.autorefresh": false,
      "gitlens.views.repositories.autoRefresh": false,
      "search.followSymlinks": false,
      "debug.allowBreakpointsEverywhere": true,
      "debug.console.closeOnEnd": true,
      "debug.console.fontFamily": " Monaco",
      "debug.console.fontSize": 18,
      "git.autofetch": true,
      "editor.tabSize": 4,
      "terminal.integrated.cursorBlinking": true,
      "terminal.integrated.cursorStyle": "line",
      "terminal.integrated.cursorWidth": 4,
      "workbench.colorTheme": "Dark-Dracula",
      "workbench.editor.enablePreview": false,
      "editor.codeLensFontFamily": "JetBrains Mono, 'Courier New', monospace",
      "editor.codeLensFontSize": 18,
      "workbench.iconTheme": "vscode-icons",
      "editor.fontFamily": "JetBrains Mono, 'Courier New', monospace",
      "[shellscript]": {
        "editor.defaultFormatter": "shakram02.bash-beautify"
      },
      "cmake.configureOnOpen": true,
      "C_Cpp.updateChannel": "Insiders",
      "go.toolsManagement.autoUpdate": true,
      "workbench.editorAssociations": [
        {
          "viewType": "jupyter.notebook.ipynb",
          "filenamePattern": "*.ipynb"
        }
      ],
      "python.linting.enabled": false,
      "editor.fontSize": 16,
      "[css]": {
        "editor.defaultFormatter": "aeschli.vscode-css-formatter"
      },
      "[html]": {
        "editor.defaultFormatter": "mohd-akram.vscode-html-format"
      },
      "html.format.enable": false,
      "css.validate": false,
      "json.format.enable": false,
      "[vue]": {
        "editor.defaultFormatter": "octref.vetur"
      },
      "[javascript]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
      },
      "go.goroot": "D:\App\Go",
      "go.logging.level": "info",
      "editor.suggest.snippetsPreventQuickSuggestions": false,
      "workbench.hover.delay": 0,
      "workbench.sash.hoverDelay": 0,
      "files.autoSaveDelay": 0,
      "testing.autoRun.delay": 0,
      "go.useLanguageServer": true,
      "go.languageServerExperimentalFeatures": {
        "diagnostics": true, // 提供 build 和 vet 的报错信息
      },
      "editor.formatOnPaste": true,
      "editor.quickSuggestions": true,
      "editor.quickSuggestionsDelay": 0,
      "editor.hover.delay": 0,
      "editor.autoClosingBrackets": "always",
      "editor.autoClosingQuotes": "always",
      "gopls": {
        "build.allowModfileModifications": true,
        "build.experimentalWorkspaceModule": true,
        "ui.completion.usePlaceholders": true
      },
      "go.docsTool": "gogetdoc",
      "go.formatTool": "goimports",
      "go.lintTool": "golangci-lint",
      "remote.SSH.remotePlatform": {
        "1.15.70.203": "linux"
      },
      
    }

    #######################

    igoodful@qq.com
  • 相关阅读:
    (转)使用BigDecimal进行精确运算
    date——sql查询
    (转)每天一个linux命令(8):cp 命令,复制文件和文件夹
    (转)每天一个linux命令(15):tail 命令
    (转)Linux 下 查看以及修改文件权限
    (转)用JUnit4进行单元测试
    (转)Spring Boot Junit单元测试
    (转)ZXing解析二维码
    (转)ZXing生成二维码和带logo的二维码,模仿微信生成二维码效果
    (转)js jquery.qrcode生成二维码 带logo 支持中文
  • 原文地址:https://www.cnblogs.com/igoodful/p/14638194.html
Copyright © 2020-2023  润新知