自学内容网 自学内容网

修改VS code代码配色

设置 --> 文本编辑器 --> 字体 --> Font Ligatures --> 在json中打开

{
    "terminal.explorerKind": "external",
    "terminal.integrated.tabStopWidth": 4,
    "files.autoSave": "onFocusChange",
    "editor.fontSize": 16,
    "editor.renderWhitespace": "all",
    "prettier.tabWidth": 4,
    "security.workspace.trust.untrustedFiles": "open",
    "editor.mouseWheelZoom": true,
    "editor.fontLigatures": false,
    "terminal.integrated.fontSize": 18,
    "screencastMode.fontSize": 60,
    "editor.inlayHints.fontSize": 5,
    "editor.suggestFontSize": 22,
    "editor.codeLensFontSize": 18,
    "chat.editor.fontSize": 20,
    "scm.inputFontSize": 20,
    "files.trimTrailingWhitespace": true,
    "workbench.editor.wrapTabs": true,
    "prettier.proseWrap": "always",
    "C_Cpp.vcFormat.wrap.preserveBlocks": "never",
    "editor.wordWrapColumn": 50,
    "editor.tokenColorCustomizations": {
        "comments": "#33970c",
        "strings": "#208130", // 字符串
        "keywords": "#6d75e2", // 关键字
        // "variables": "#a792e2", // 变量名
        "functions": "#9c337d", // 内置函数名
        // "numbers": "#00eeff", // 数字
        // "types": "#55bbff", //类定义颜色

    }


}

原文地址:https://blog.csdn.net/weixin_39715012/article/details/142657018

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!