Skip to content

Instantly share code, notes, and snippets.

@Bosphoramus
Created November 10, 2020 15:34
Show Gist options
  • Save Bosphoramus/34668e37b9168f8cf94606af4ed1c68c to your computer and use it in GitHub Desktop.
Save Bosphoramus/34668e37b9168f8cf94606af4ed1c68c to your computer and use it in GitHub Desktop.
// Italics
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"entity.name.type.class",
"keyword",
"constant",
"storage.modifier",
"storage.type.class.js",
"storage",
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
"invalid",
"keyword.operator",
"constant.numeric.css",
"keyword.other.unit.px.css",
"constant.numeric.decimal.js",
"constant.numeric.json",
"storage.type.function.arrow"
],
"settings": {
"fontStyle": ""
}
}
]
},
@Bosphoramus
Copy link
Author

Cool AF Italics for VSCode ^^

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment