• vs code 背景色设置


    {
        "workbench.colorTheme": "Visual Studio Light",
        "editor.tabSize": 2, //工作台主题颜色
        "typescript.updateImportsOnFileMove.enabled": "always",
        // "editor.formatOnSave": true, // 保存时格式化
        "breadcrumbs.enabled": false, // 开启 vscode 文件路径导航
        // "tslint.autoFixOnSave": true, // #每次保存的时候将代码按tslint格式进行修复
        "eslint.autoFixOnSave": true, // #每次保存的时候将代码按eslint格式进行修复
        // "prettier.semi": false,//prettier 设置语句末尾不加分号
        "prettier.singleQuote": true, // prettier 设置强制单引号
        "vetur.format.defaultFormatter.js": "vscode-typescript", // #让vue中的js按编辑器自带的ts格式进行格式化 
        "window.enableMenuBarMnemonics": false,
        "liveServer.settings.donotShowInfoMsg": true,
        // "workbench.colorTheme": "Winter is Coming (Light)", //窗口.不启用菜单栏输入法,修改主题配色
        "workbench.colorCustomizations": { // 颜色设置
            // "foreground": "#75a478",
            "editor.background": "#C7EDCC",
            // "editor.background": "#c1d8ac",
            "sideBar.background": "#FAF9DE",
            "terminal.background": "#EAEAEF"
        },
        "files.autoGuessEncoding": true,
        "editor.suggestSelection": "first",
        "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
        "extensions.ignoreRecommendations": true,
        "window.zoomLevel": 0,
        "[html]": {
            "editor.defaultFormatter": "HookyQR.beautify"
        },
        "editor.codeActionsOnSave": null,
        "files.associations": {
            "*.cjson": "jsonc",
            "*.wxss": "css",
            "*.wxs": "javascript",
            "*.wxp": "vue"
        },
        "emmet.includeLanguages": {
            "wxml": "html"
        },
        "minapp-vscode.disableAutoConfig": true,
        "editor.fontSize": 17
    }
  • 相关阅读:
    Cesium中的坐标系及转换
    Cesium Workshop
    window.postMessage 跨窗口,跨iframe javascript 通信
    VUE课程参考---7、跑马灯效果
    VUE课程---9、事件绑定v-on
    VUE课程---8、属性绑定v-bind
    VUE课程---7、解决插值表达式闪烁问题
    小谈chrome调试命令:console.log的使用
    Hadoop平台配置总结
    hadoop 关闭进程时报错no 进程 to stop
  • 原文地址:https://www.cnblogs.com/turbozhang/p/16093354.html
Copyright © 2020-2023  润新知