Created
July 18, 2020 19:22
-
-
Save imcarvalho/9edee2358c031899084e4e60a9dfe791 to your computer and use it in GitHub Desktop.
Italics for VSCode
This file contains 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", | |
"constant", | |
"keyword", | |
"markup.italic", | |
"meta.selector", | |
"storage.modifier", | |
"storage.type", | |
"storage.type.class.js", | |
"variable.language" | |
], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": [ | |
"constant.numeric.css", | |
"constant.numeric.decimal.js", | |
"constant.numeric.json", | |
"invalid", | |
"keyword.other.unit.px.css" | |
], | |
"settings": { | |
"fontStyle": "" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment