zoukankan      html  css  js  c++  java
  • VS Code配置

    {
    "files.autoSave": "afterDelay",
    "editor.tabSize": 4,
    "workbench.editor.enablePreview": false,
    "window.zoomLevel": 0,
    "workbench.statusBar.visible": true,
    "editor.wordWrap": "off",
    "workbench.sideBar.location": "left",
    "editor.minimap.enabled": false,
    "explorer.confirmDelete": false,
    "editor.detectIndentation": false,
    "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
    "files.exclude": {
    "node_modules/": true,
    ".idea/": true,
    ".svn/": true,
    ".vscode/": true,
    "**/.map": true,
    },
    "editor.suggest.snippetsPreventQuickSuggestions": false,
    "terminal.integrated.rendererType": "dom",
    "editor.quickSuggestions": {
    "strings": true
    },
    "terminal.integrated.shell.windows": "C:\Windows\System32\cmd.exe",
    "editor.fontWeight": "500",
    "files.associations": {
    "*.html": "html",
    "*.vue": "vue",
    "*.cjson": "jsonc",
    "*.wxss": "css",
    "*.wxs": "javascript"
    },
    "beautify.language": {
    "js": {
    "type": [
    "javascript",
    "json"
    ],
    "filename": [
    ".jshintrc",
    ".jsbeautify"
    ]
    },
    "css": [
    "css",
    "scss"
    ],
    "html": [
    "htm",
    "html",
    "vue"
    ]
    },
    "vsicons.dontShowNewVersionMessage": true,
    "emmet.includeLanguages": {
    "wxml": "html"
    },
    "minapp-vscode.disableAutoConfig": true,
    "cssrem.rootFontSize":16,
    "cssrem.fixedDigits": 2,
    "editor.renderControlCharacters": false,
    "editor.fontSize": 16
    }
  • 相关阅读:
    BZOJ 4815: [Cqoi2017]小Q的表格
    BZOJ 3676: [Apio2014]回文串
    BZOJ 4503: 两个串
    BZOJ 2618: [Cqoi2006]凸多边形
    BZOJ 1137: [POI2009]Wsp 岛屿
    BZOJ 4824: [Cqoi2017]老C的键盘
    BZOJ 3167: [Heoi2013]Sao
    BZOJ 4033: [HAOI2015]树上染色
    1003. 我要通过!(20)
    1002. 写出这个数 (20)
  • 原文地址:https://www.cnblogs.com/L807192770/p/11319891.html
Copyright © 2011-2022 走看看