Created
December 19, 2022 13:18
-
-
Save neg4n/b1c1c602b60f2a3944f12b77e2a7bf74 to your computer and use it in GitHub Desktop.
Cool italic settings for fonts like Operator Mono.. (Visual Studio Code)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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