Skip to content

Instantly share code, notes, and snippets.

@neg4n
Created December 19, 2022 13:18
Show Gist options
  • Save neg4n/b1c1c602b60f2a3944f12b77e2a7bf74 to your computer and use it in GitHub Desktop.
Save neg4n/b1c1c602b60f2a3944f12b77e2a7bf74 to your computer and use it in GitHub Desktop.
Cool italic settings for fonts like Operator Mono.. (Visual Studio Code)
{
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"keyword",
"constant",
"storage.type",
"storage.modifier",
"storage.type.class.js",
"keyword.operator.expression.in.js",
"keyword.operator.expression.of.js"
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
"class",
"invalid",
"keyword.operator",
"constant.numeric.css",
"keyword.other.unit.px.css",
"constant.numeric.decimal.js",
"constant.numeric.json"
],
"settings": {
"fontStyle": ""
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment