Skip to content

Instantly share code, notes, and snippets.

@coskuntekin
Created February 9, 2023 02: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 coskuntekin/0c0eefff18af6f44f2016a6d8d8d2f7a to your computer and use it in GitHub Desktop.
Save coskuntekin/0c0eefff18af6f44f2016a6d8d8d2f7a to your computer and use it in GitHub Desktop.
VSCode italic
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"variable",
"variable.other.object.js",
"variable.other.object.property",
"keyword",
"storage.type",
"storage.modifier",
"variable.language.this",
"keyword.operator",
"storage",
"meta.var.expr",
"meta.class meta.method.declaration meta.var.expr storage.type.js",
"storage.type.property.js",
"storage.type.property.ts",
"entity.name.function",
"entity.other.attribute-name",
"punctuation.decorator",
"markup.quote.markdown",
"markup.italic.markdown",
"punctuation.definition.italic.markdown",
"markup.inline.raw.string.markdown",
"markup.fenced_code.block.markdown",
"markup.quote"
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
"markup.bold.markdown",
"punctuation.definition.bold.markdown"
],
"settings": {
"fontStyle": "bold"
}
},
{
"scope": ["invalid"],
"settings": {
"fontStyle": "italic bold underline"
}
},
{
"scope": ["invalid.deprecated"],
"settings": {
"fontStyle": "bold italic underline"
}
}
]
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment