• Visual Studio Code使用的插件及个性化配置


    罗列一些自己在vs code中常用的插件和个性化配置

    vs code插件

    settings.json个性化配置

    {
        "workbench.startupEditor": "newUntitledFile",
        "workbench.iconTheme": "vscode-icons",
        "breadcrumbs.enabled": false,
        "editor.multiCursorModifier": "alt",
        "editor.renderWhitespace": "none",
        "editor.renderControlCharacters": false,
        "vsicons.dontShowNewVersionMessage": true,
        "files.autoSave": "afterDelay",
        "editor.tabSize": 2,
        "files.associations": {
            "*.vue": "vue"
        },
        "eslint.autoFixOnSave": true,
        "eslint.options": {
            "extensions": [
                ".js",
                ".vue"
            ]
        },
        "eslint.validate": [
            "javascript", {
                "language": "vue",
                "autoFix": true
            }, "html", "vue"
        ],
        "search.exclude": {
            "**/node_modules": true,
            "**/bower_components": true,
            "**/dist": true
        },
        "emmet.syntaxProfiles": {
            "javascript": "jsx",
            "vue": "html",
            "vue-html": "html"
        },
        "git.confirmSync": false,
        "window.zoomLevel": 0,
        "editor.cursorBlinking": "smooth",
        "editor.minimap.enabled": true,
        "editor.minimap.renderCharacters": false,
        "window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",
        "editor.codeLens": true,
        "editor.snippetSuggestions": "top",
        "editor.codeActionsOnSave": {
            "source.fixAll.eslint": true
        },
        "diffEditor.ignoreTrimWhitespace": false,
        "liveServer.settings.donotShowInfoMsg": true
    }
    
  • 相关阅读:
    福建省队集训被虐记——DAY1
    bzoj1755 [Usaco2005 qua]Bank Interest
    bzoj1754 [Usaco2005 qua]Bull Math
    bzoj1753 [Usaco2005 qua]Who's in the Middle
    wikioi1369 xth 砍树
    wikioi1191 数轴染色
    bzoj1189 [HNOI2007]紧急疏散evacuate
    POJ 3734 Blocks(矩阵快速幂+矩阵递推式)
    斐波那契+大数相加
    矩阵的快速幂
  • 原文地址:https://www.cnblogs.com/ykCoder/p/12176685.html
Copyright © 2020-2023  润新知