zoukankan      html  css  js  c++  java
  • 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
  • 相关阅读:
    计算机基础知识
    markdown简介及基本语法
    session和cookie的区别
    MySQL的游标
    数据库单表查询
    外键(有无级联)
    mysql
    数据库引擎
    守护进程和守护线程的区别
    快排等
  • 原文地址:https://www.cnblogs.com/igoodful/p/14638194.html
Copyright © 2011-2022 走看看