Skip to content

Instantly share code, notes, and snippets.

@kyleknighted
Created May 23, 2018 12:13
Show Gist options
  • Save kyleknighted/140e45e0253143069a03e6c3b7057d16 to your computer and use it in GitHub Desktop.
Save kyleknighted/140e45e0253143069a03e6c3b7057d16 to your computer and use it in GitHub Desktop.
This snippet will allow you to have italics in comments while using supported fonts like Operator Mono
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "Italicsify for Operator Mono",
"scope": [
"modifier",
"this",
"comment",
"storage.modifier.js",
"entity.other.attribute-name.js"
],
"settings": {
"fontStyle": "italic"
}
}
]
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment