A dark theme for VS Code with italics support.
- Open Extensions sidebar panel in VS Code.
View → Extensions
- Search for
Devoid
- Click Install to install it.
- Click Reload to reload the your editor
- Code > Preferences > Color Theme > Devoid
{
"editor.wordWrap": "on",
// Italics support defaults to true for cursive font.
// Enable a font that supports it like Operator/Fira/Dank mono
"editor.fontFamily": "Operator Mono, Menlo, Monaco, 'Courier New', monospace",
"files.trimTrailingWhitespace": true
}
These are the settings that are used to create the italics support. If you would like to remove italics for a certain scope add it to settings.json.
Example:
// remove variable italics
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"storage.type"
],
"settings": {
"fontStyle": ""
}
}
]
}