ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

vscode的settings.json配置文件

2021-04-09 18:02:06  阅读:290  来源: 互联网

标签:workbench false 配置文件 vscode defaultFormatter json editor go true


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

 

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

 

 

 

 

 

 

 

 

 

 

 

 

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

标签:workbench,false,配置文件,vscode,defaultFormatter,json,editor,go,true
来源: https://www.cnblogs.com/igoodful/p/14638194.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有