Skip to content

Instantly share code, notes, and snippets.

@leninalbertolp
Last active April 23, 2023 17:40
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leninalbertolp/555f8128ef7b82dd85a64e12403f8498 to your computer and use it in GitHub Desktop.
Save leninalbertolp/555f8128ef7b82dd85a64e12403f8498 to your computer and use it in GitHub Desktop.
Configuración para aplicar correctamente la fuente Operator Mono en VSCode
{
"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