VSCODE 我常用的配置

{ "explorer.confirmDelete": false, "go.formatTool": "goimports", "go.toolsManagement.autoUpdate": true, "terminal.integrated.fontFamily": "Cascadia Code", "security.workspace.trust.untrustedFiles": "open", "todo-tree.general.tags": [ "BUG", "HACK", "FIXME", "TODO", "CRH", ], "todo-tree.highlights.customHighlight": { "TODO": { "type": "line", "foreground": "#99ff99" }, "FIXME": { "type": "line", "foreground": "#ceec0b" }, "BUG": { "type": "line", "foreground": "#ff0000" }, "CRH": { "type": "line", "foreground": "#0ce64a" }, }, "diffEditor.maxComputationTime": 0, "git.enableSmartCommit": true, "git.confirmSync": false, "[typescript]": { "editor.defaultFormatter": "vscode.typescript-language-features" }, "[vue]": { "editor.defaultFormatter": "Vue.volar" }, "editor.inlineSuggest.enabled": true, "editor.fontSize": 14, "editor.fontWeight": "500", "[html]": { "editor.defaultFormatter": "vscode.html-language-features" }, "editor.codeActionsOnSave": { "source.fixAll": false, "source.fixAll.eslint": true }, "editor.fontFamily": "Cascadia Code", "terminal.integrated.defaultProfile.windows": "Command Prompt", "workbench.colorTheme": "Default Dark+", "carbon.theme": "night-owl", "carbon.backgroundColor": "rgba(0,0,0,0)", "carbon.paddingHorizontal": 20, "carbon.paddingVertical": 20, "carbon.dropShadowOffset": 50, "editor.detectIndentation": false, "[go]": {}, "editor.formatOnSave": true, "go.alternateTools": {}, "explorer.confirmDragAndDrop": false, "window.commandCenter": true, "git.openRepositoryInParentFolders": "always", }
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章