Skip to content

Instantly share code, notes, and snippets.

@ziishaned
Forked from dev01d/vscode-italics.json
Created February 18, 2022 07:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ziishaned/05403d29f9a19f4693effd63460cbeed to your computer and use it in GitHub Desktop.
Save ziishaned/05403d29f9a19f4693effd63460cbeed to your computer and use it in GitHub Desktop.
VSCode italics in (almost) any theme
{
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"keyword.control",
"keyword.operator.new",
"keyword.operator.assignment",
"keyword.operator.arithmetic",
"storage.modifier",
"storage.type",
"support.class",
"support.constant",
"support.other",
"entity.name.method",
"entity.name.section",
"entity.name.selector",
"entity.name.type",
"entity.other",
"entity.other.attribute-name",
"entity.other.inherited-class"
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": ["storage.type.function.arrow", "meta.paragraph.markdown"],
"settings": {
"fontStyle": ""
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment