美文网首页
VS Code 插件

VS Code 插件

作者: 越前君 | 来源:发表于2020-03-26 22:42 被阅读0次

参考 完整卸载 Mac 上面的 VS Code

插件

  1. Auto Close Tag
  2. Auto Rename Tag
  3. Image preview
  4. Chinese (Simplified) Language Pack for Visual Studio Code
  5. Code Spell Checker
  6. File Peek
  7. Highlight Matching Tag
  8. HTML CSS Support
  9. HTML Snippets
  10. Import Cost
  11. JavaScript (ES6) code snippets
  12. jQuery Code Snippets
  13. JS-CSS-HTML Formatter
  14. Markdown Preview Enhanced
  15. SCSS Formatter
  16. Vetur
  17. vscode-icons-mac
  18. vue-beautify
  19. VueHelper
  20. open in browser
次要插件
  1. Polacode-2019 生成美观的代码片段截图

主题

  1. 颜色主题 Light (Visual Studio)
  2. 文件主题图标 VSCode Icons Mac

旧配置 settings.json

Settings File Locations
Depending on your platform, the user settings file is located here:

Windows: %APPDATA%\Code\User\settings.json
Mac: $HOME/Library/Application Support/Code/User/settings.json
Linux: $HOME/.config/Code/User/settings.json

{
    "gitlens.advanced.messages": {
        "suppressShowKeyBindingsNotice": true
    },
    "emmet.syntaxProfiles": {
        "javascript": "jsx"
    },
    "editor.minimap.enabled": false, // 控制是否显示缩略图
    "window.zoomLevel": 0,
    "files.associations": {
        "*.cjson": "jsonc",
        "*.wxss": "css",
        "*.wxs": "javascript",
        "*.acss": "css",
        "*.axml": "html",
        "*.postcss": "scss"
    },
    "emmet.includeLanguages": {
        "wxml": "html"
    },
    "minapp-vscode.disableAutoConfig": true,
    "javascript.updateImportsOnFileMove.enabled": "always",
    "terminal.integrated.rendererType": "dom",
    "[html]": {
        "editor.defaultFormatter": "vscode.html-language-features"
    },
    "workbench.iconTheme": "vscode-icons-mac",
    "[vue]": {},
    "[css]": {
        "editor.defaultFormatter": "HookyQR.beautify"
    },
    "[scss]": {
        "editor.defaultFormatter": "HookyQR.beautify"
    },
    "search.followSymlinks": false,
    "vsicons.dontShowNewVersionMessage": true,
    "workbench.colorTheme": "Visual Studio Light",
    "explorer.confirmDelete": false,
    "gitlens.gitCommands.closeOnFocusOut": true,
    "[json]": {
        "editor.defaultFormatter": "HookyQR.beautify"
    },
    "[jsonc]": {
        "editor.defaultFormatter": "vscode.json-language-features"
    },
    "[javascript]": {
        "editor.defaultFormatter": "vscode.typescript-language-features"
    }
}

相关文章

网友评论

      本文标题:VS Code 插件

      本文链接:https://www.haomeiwen.com/subject/zazexhtx.html