8000 GitHub - vpcano/JetBrainsVictorMono
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

vpcano/JetBrainsVictorMono

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

JetBrainsVictor Mono font

This font is a combination of the JetBrainsMono font and the Victor Mono font for italic and bold italic families, trying to mimic the Operator Mono font for free.

Screenshot

How to use

  1. Clone the repo and install all *.ttf files from the ttf folder in your OS.
  2. Enable the font and font ligatures in your editor of choice. For VSCode:
"editor.fontFamily": "'JetBrainsVictorMono'",
"editor.fontLigatures": true,
  1. Enable italic font on the keywords of your choice. See scope naming. For example, on VSCode:
"editor.tokenColorCustomizations": {
    "textMateRules": [
        {
            "scope": [
                "comment",
                "storage.modifier", //static keyword
                "storage.type.class",
                "storage.type.class.js", //class keyword
                "entity.name.type.class", //class names
                "entity.other.attribute-name",
                "entity.other.attribute-name.html",
                "entity.other.attribute-name.tag.jade",
                "entity.other.attribute-name.tag.pug",
                "markup.italic",
                "keyword", //import, export, return…
                "keyword.control",
                "variable.language",
                "constant", //String, Number, Boolean…, this, super
            ],
            "settings": {
                "fontStyle": "italic",
            }
        },
        {
            "scope": ["strong", "markup.bold", "markup.heading"],
            "settings": {
                "fontStyle": "bold"
            }
        },
        {
            "scope": ["markup.underline"],
            "settings": {
                "fontStyle": "underline"
            }
        },
        {
            "scope": [
                "invalid",
                "keyword.operator",
                "constant.numeric",
                "entity.other.attribute-name"
            ],
            "settings": {
                "fontStyle": ""
            }
        }
    ]
},

References

Inspired by font Hactor (combination of Hack and Victor Mono) by dqisme.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0