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"
    }
    
    
  • 相关阅读:
    大数据时代-散记
    MongoDB命令行操作
    easyui获取日期datebox中的值
    linux文件系统学习
    Linux中部署JAVA程序
    百度Clouda的初步探索
    global.asax?app.config?webconfig??
    Android adb install INSTALL_FAILED_DEXOPT
    Android SharedPreferences 权限设置
    vim 支持 markdown 语法
  • 原文地址:https://www.cnblogs.com/gating/p/12488391.html
Copyright © 2011-2022 走看看