zoukankan      html  css  js  c++  java
  • Mac端的vscode主题等个性配置。

    最近搭建好了anaconda和vscode,备份下它的配置。

    预览图

    主题:

    Material Theme Darker;

    字体:

    Operator Mono;

    代码见下面

    {
        "window.zoomLevel": 1,
        "python.jediEnabled": false,
        "editor.fontSize": 15,
        "terminal.integrated.inheritEnv": false,
        "workbench.iconTheme": "helium-icon-theme",
        "python.dataScience.sendSelectionToInteractiveWindow": true,
        "workbench.settings.useSplitJSON": true,
        "editor.formatOnType": true,
        "editor.fontLigatures": true, // 这个控制是否启用字体连字
        "editor.tokenColorCustomizations": {
            "textMateRules": [
                {
                    "name": "italic font",
                    "scope": [
                        "comment",
                        "keyword",
                        "storage",
                        "keyword.control.import",
                        "keyword.control.default",
                        "keyword.control.from",
                        "keyword.operator.new",
                        "keyword.control.export",
                        "keyword.control.flow",
                        "storage.type.class",
                        "storage.type.function",
                        "storage.type",
                        "storage.type.class",
                        "variable.language",
                        "variable.language.super",
                        "variable.language.this",
                        "meta.class",
                        "meta.var.expr",
                        "constant.language.null",
                        "support.type.primitive",
                        "entity.name.method.js",
                        "entity.other.attribute-name",
                        "punctuation.definition.comment",
                        "text.html.basic entity.other.attribute-name.html",
                        "text.html.basic entity.other.attribute-name",
                        "tag.decorator.js entity.name.tag.js",
                        "tag.decorator.js punctuation.definition.tag.js",
                        "source.js constant.other.object.key.js string.unquoted.label.js",
                    ],
                    "settings": {
                        "fontStyle": "italic",
                    }
                },
            ]
        },
        "files.autoSaveDelay": 10,
        "editor.fontFamily": "Operator Mono",
        "workbench.colorTheme": "Material Theme Darker",
        "explorer.confirmDelete": false,
        "terminal.integrated.rendererType": "dom",
    }
    
  • 相关阅读:
    1022-哈夫曼编码与译码
    openresty 学习笔记二:获取请求数据
    openresty 学习笔记一:环境安装
    Lua在Windows下的安装、配置、运行
    Django框架中logging的使用
    死磕nginx系列--使用upsync模块实现负载均衡
    死磕nginx系列--nginx 限流配置
    死磕nginx系列--使用nginx做cache服务
    死磕nginx系列--使用nginx做负载均衡
    死磕nginx系列--nginx服务器做web服务器
  • 原文地址:https://www.cnblogs.com/wangdaodao/p/12907471.html
Copyright © 2011-2022 走看看