VScode首选项

首选项相关的设置:

// 将设置放入此文件中以覆盖默认设置
{
    "workbench.iconTheme": "vscode-icons",
    "workbench.colorTheme": "Visual Studio Dark",
    "editor.renderIndentGuides": false,
    "extensions.ignoreRecommendations": true,
    "vsicons.dontShowNewVersionMessage": true,
    "emmet.triggerExpansionOnTab": true,
    "emmet.includeLanguages": {
        "vue-html": "html",
        "vue": "html"
    },
    "files.autoSave": "onFocusChange",
    "bookmarks.saveBookmarksInProject": true,
    "bookmarks.navigateThroughAllFiles": true
}

原文地址:https://www.cnblogs.com/wang715100018066/p/8064666.html