Skip to content

Instantly share code, notes, and snippets.

@imcarvalho
Created July 18, 2020 19:22
Show Gist options
  • Save imcarvalho/9edee2358c031899084e4e60a9dfe791 to your computer and use it in GitHub Desktop.
Save imcarvalho/9edee2358c031899084e4e60a9dfe791 to your computer and use it in GitHub Desktop.
Italics for VSCode
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"constant",
"keyword",
"markup.italic",
"meta.selector",
"storage.modifier",
"storage.type",
"storage.type.class.js",
"variable.language"
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
"constant.numeric.css",
"constant.numeric.decimal.js",
"constant.numeric.json",
"invalid",
"keyword.other.unit.px.css"
],
"settings": {
"fontStyle": ""
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment