Last active
April 23, 2023 17:40
-
-
Save leninalbertolp/555f8128ef7b82dd85a64e12403f8498 to your computer and use it in GitHub Desktop.
Configuración para aplicar correctamente la fuente Operator Mono en VSCode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.tokenColorCustomizations": { | |
"[El nombre del theme que estes usando]": { | |
"textMateRules": [ | |
{ | |
"scope": [ | |
"comment", | |
"punctuation.definition.comment", | |
"comment.block", | |
"comment.line", | |
"comment.block.documentation", | |
"comment.line.double-slash", | |
"entity.other.attribute-name", | |
"entity.other.attribute-name.html", | |
"markup.italic", | |
"entity.other.attribute-name.id", | |
"entity.other.attribute-name.class.css", | |
"entity.other.attribute-name.tag.jade", | |
"entity.other.attribute-name.class.jade", | |
"entity.other.attribute-name.id.jade", | |
"keyword.control", | |
"storage", | |
"emphasis", | |
"variable.language" | |
], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
} | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment