Skip to content

Instantly share code, notes, and snippets.

@ubuntux
Last active April 7, 2021 17:06
Show Gist options
  • Save ubuntux/978eae0308374745795d73cd21a374b3 to your computer and use it in GitHub Desktop.
Save ubuntux/978eae0308374745795d73cd21a374b3 to your computer and use it in GitHub Desktop.
VS Code settings to take advantage of cursive italics offered by Victor Mono font.

Coding Font - Victor Mono

VS Code settings to take advantage of cursive italics offered by Victor Mono font.

Get the font

Download Victor Mono font, here.

Install the font

Customize your VS Code workspace settings

{
    "editor.fontFamily": "'Victor Mono', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
    "editor.tokenColorCustomizations": {
        "textMateRules": [
            {
                "scope": [
                    "comment",
                    "meta.function",
                    "keyword.control",
                    "storage.modifier",
                    "storage.type"
                ],
                "settings": {
                    "fontStyle": "italic"
                }
            },
            {
                "scope": [
                    "constant",
                    "meta.function"
                ],
                "settings": {
                    "fontStyle": "bold"
                }
            }
        ]
    },
    "editor.fontLigatures": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment