zoukankan      html  css  js  c++  java
  • vscode的个人配置

    前言

    此篇只是为了记录自己vscode的设置,防止以后配置丢失,无实际意义

    {
        "files.autoSave": "afterDelay",
        "editor.formatOnPaste": true,
        "editor.formatOnType": true,
        "editor.formatOnSave": true,
        "fileheader.Author": "gating",
        "fileheader.LastModifiedBy": "gating",
        "explorer.confirmDelete": false,
        "vetur.validation.template": false,
        "git.enableSmartCommit": true,
        "emmet.triggerExpansionOnTab": true,
        "emmet.includeLanguages": {
            "vue-html": "html",
            "vue": "html"
        },
        "workbench.activityBar.visible": true,
        "files.associations": {
            "*.wxss": "css",
            "*.html": "html"
        },
        "window.menuBarVisibility": "default",
        "window.zoomLevel": 0,
        "editor.minimap.enabled": true,
        "python.linting.flake8Enabled": true,
        "python.formatting.provider": "yapf",
        "guides.enabled": false,
        "editor.renderWhitespace": "none",
        "editor.renderControlCharacters": false,
        "git.autofetch": true,
        "workbench.statusBar.visible": true,
        "terminal.integrated.shell.windows": "C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe",
        "git.confirmSync": false,
        "px2rem.rootFontSize": 75,
        "px2rem.isNeedNotes": false,
        "workbench.settings.useSplitJSON": true,
        "workbench.settings.editor": "json",
        "javascript.updateImportsOnFileMove.enabled": "always",
        "sync.gist": "023ae35a68a66e3b5e122045f4c94d0e",
        "vetur.format.defaultFormatter.html": "prettier",
        "workbench.colorTheme": "Dracula",
        "html-css-class-completion.includeGlobPattern": "**/*.{css,html,vue,jsx}",
        "vetur.format.options.tabSize": 4,
        "[jsonc]": {
            "editor.defaultFormatter": "HookyQR.beautify"
        },
        "workbench.iconTheme": "vscode-icons"
    }
    
    
  • 相关阅读:
    asp.net发送邮件
    jquery+TreeView 级联 复选框 checkbox 级联
    100层楼,两个会坏的杯子,测从哪层开始坏【算法思想】
    flex中dragdrop不响应的原因
    flex 中urlrequest缓存问题
    程序员技术练级攻略
    consistent hashing
    入门教材
    烙饼啊烙饼{转自ITEO
    杂乱的工作记录
  • 原文地址:https://www.cnblogs.com/gating/p/12488391.html
Copyright © 2011-2022 走看看