I’m experiencing an issue with font rendering in Cursor. While the regular JetBrains Mono font is displaying correctly, the italic variant is not being applied as expected. Here are the key points:
-
Regular JetBrains Mono font renders correctly.
-
Italic style is not being applied to keywords or other elements where it should be.
-
The font color changes are working as intended.
-
This issue persists despite correct configuration in the settings.json file.
Current Configuration:
"editor.fontFamily": "JetBrains Mono",
"editor.tokenColorCustomizations": {
"[One Dark Pro]": {
"textMateRules": [
{
"scope": ["keyword", "storage.type", "storage.modifier"],
"settings": {
"fontStyle": "italic",
"foreground": "#D55FDE"
}
}
]
}
}
Expected Behavior:
Keywords and other specified elements should appear in italic JetBrains Mono font (VS Code can successfully display).