Last active
January 21, 2024 16:59
-
-
Save ratul16/2c64cb9ef9745b2b78c22afca53fe0a7 to your computer and use it in GitHub Desktop.
Vscode italic font style scopes
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
# VSCode italic font settings | |
*Add this to settings.json (`cmd ,`):* | |
``` | |
{ | |
"editor.fontFamily": "Operator Mono, Fira Code iScript, Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": [ | |
//following will be in italic | |
"comment", | |
"entity.name.type.class", //class names | |
"constant", //String, Number, Boolean…, this, super | |
"storage.modifier", //static keyword | |
"storage.type.class.js", //class keyword | |
"keyword", //import, export, return… | |
], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": [ | |
//following will be excluded from italics (VSCode has some defaults for italics) | |
"invalid", | |
"keyword.operator", | |
"constant.numeric.css", | |
"keyword.other.unit.px.css", | |
"constant.numeric.decimal.js", | |
"constant.numeric.json" | |
], | |
"settings": { | |
"fontStyle": "" | |
} | |
} | |
] | |
}, | |
} | |
``` | |
## Resources | |
https://www.cufonfonts.com/font/operator-mono | |
https://github.com/kencrocken/FiraCodeiScript | |
https://github.com/tonsky/FiraCode | |
``` | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true` | |
``` | |
https://github.com/kosimst/FiraFlott |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment