Vscode 装一些写go之类的常用的插件

1

2

3

4

{
    "editor.fontFamily": "'Microsoft YaHei Mono',Consolas, 'Courier New', monospace",
    "editor.minimap.showSlider": "always",
    "editor.detectIndentation": false,
    "editor.wordWrap": "on",
    "workbench.startupEditor": "newUntitledFile",
    "window.zoomLevel": 0,
    "html.format.extraLiners": "",
    "git.enableSmartCommit": true,
    "extensions.ignoreRecommendations": false,
    "emmet.syntaxProfiles": {
        "vue-html": "html",
        "vue": "html"
    },
    "terminal.integrated.copyOnSelection": true,
    "git.path": "D:/Program Files/Git/bin/git.exe",
    "editor.rulers": [120, 180],
    "git.inputValidationLength": 120,
    "[git-commit]": {
        "editor.rulers": [120]
    },
    "prettier.jsxBracketSameLine": true,
    "editor.wordWrapColumn": 180,
    // "html.suggest.angular1": false,
    "explorer.confirmDragAndDrop": false,
    "vetur.validation.template": false,
    "vetur.format.options.tabSize": 4,
    "vetur.format.options.useTabs": true,
    "vetur.format.defaultFormatter.html": "js-beautify-html",
    "vetur.format.defaultFormatterOptions": {
        "js-beautify-html": {
            "wrap_attributes": "auto"
        }
    },
    "search.followSymlinks": false,
    "editor.quickSuggestions": {
        "other": true,
        "comments": true,
        "strings": true
    },
    "emmet.triggerExpansionOnTab": true,
    //   "gitHistory.showEditorTitleMenuBarIcons": false,
    //   "view-in-browser.customBrowser": "chrome",
    "editor.renderLineHighlight": "all",
    "git.confirmSync": false,
    "go.gopath": "D:/App/Go",
    // "go.useCodeSnippetsOnFunctionSuggest": true,
    "go.addTags": {
        "tags": "json",//,form
        "options": "",
        "promptForTags": false,
        "transform": "snakecase"
    },
    "go.testFlags": ["-v"],
    "go.editorContextMenuCommands": {
        "toggleTestFile": false,
        "addTags": true,
        "removeTags": true,
        "testAtCursor": false,
        "testFile": false,
        "testPackage": false,
        "generateTestForFunction": false,
        "generateTestForFile": false,
        "generateTestForPackage": false,
        "testCoverage": false,
        "playground": false
    },
    "extensions.showRecommendationsOnlyOnDemand": true,
    "git.autofetch": true,
    "breadcrumbs.enabled": true,
    "javascript.updateImportsOnFileMove.enabled": "always",
    "explorer.confirmDelete": false,
    "editor.renderControlCharacters": true,
    "workbench.activityBar.visible": true,
    "python.jediEnabled": false,
    "python.linting.enabled": false,
    "python.autoComplete.addBrackets": true,
    "python.pythonPath": "D:/Program Files/Python36/python.exe",
    "python.jediPath": "D:/Program Files/Python36/Lib/site-packages/jedi",
    // "C_Cpp.clang_format_fallbackStyle": "Google",
    //   "C_Cpp.default.includePath": [
    //     "D:/Program Portable Files/mingw64/x86_64-w64-mingw32/include/**"
    //   ],
    "workbench.statusBar.visible": true,
    "workbench.commandPalette.history": 20,
    "prettier.printWidth": 180,
    // "C_Cpp.clang_format_fallbackStyle": "Google",
    "window.menuBarVisibility": "default",
    "workbench.sideBar.location": "left",
    "html.format.indentHandlebars": true,
    "html.format.wrapLineLength": 0,
    "html.format.enable": false,
    "prettier.tabWidth": 4,
    "editor.minimap.maxColumn": 120,
    "html.format.wrapAttributes": "force-aligned",
    "editor.autoIndent": false,
    "terminal.integrated.shell.windows": "D:\\Program Files\\Git\\bin\\bash.exe",
    "view-in-browser.customBrowser": "chrome",
    "gitlens.hovers.currentLine.over": "line",
    "[javascript]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "window.title": "${dirty}${activeEditorLong}${separator}",
    "[json]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "telemetry.enableTelemetry": false,
    "editor.suggestSelection": "first",
    "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
    "vsicons.dontShowNewVersionMessage": true,
    "workbench.iconTheme": "vscode-icons",
    "[typescript]": {
        "editor.defaultFormatter": "vscode.typescript-language-features"
    },
    "javascript.referencesCodeLens.enabled": true,
    "javascript.suggest.completeFunctionCalls": true,
    "typescript.implementationsCodeLens.enabled": true,
    "dart.checkForSdkUpdates": false,
    "dart.reportAnalyzerErrors": false,
    "workbench.settings.enableNaturalLanguageSearch": false,
    "telemetry.enableCrashReporter": false,
    "workbench.enableExperiments": false,
    "go.lintOnSave": "off"
}

然后在vscode 搜索以下插件直接安装

 

 

 

根据引用\[1\],Vetur插件是Vue开发者必备的插件,它提供了语法高亮、智能提示、emmet、错误提示、格式化、自动补全和debugger等功能。而对于Vue3的开发,可以使用插件Vue Language Features (Volar)。所以,对于Vue开发,建议安Vetur插件和Vue Language Features (Volar)插件。 另外,根据引用\[2\]和引用\[3\],你可以通过以下两种方法安插件: 方法一:在VScode中直接搜索并安插件。你可以在VScode插件库中搜索你需要的插件,然后点击安即可。 方法二:下载插件的vsix文件并导入。你可以在VScode官方插件库下载插件的vsix文件,然后在VScode中选择"Extensions",点击"..."按钮,选择"Install from VSIX",然后选择刚刚下载的vsix文件进行安。 总结起来,对于VScode插件,你可以通过在VScode中搜索并安插件,或者下载插件的vsix文件并导入进行安。 #### 引用[.reference_title] - *1* [VsCode 常用好用插件/配置+开发Vue 必插件](https://blog.csdn.net/weixin_45630258/article/details/129686745)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* *3* [VScode离线插件](https://blog.csdn.net/qq_52476758/article/details/124824848)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值