Reputation: 23
I don't want italic.How to change it?
I want a regular font style instead of italic.
Upvotes: 0
Views: 647
Reputation: 23
Add to the setting.json:
"editor.tokenColorCustomizations": {
"comments": {
"fontStyle": "",
"foreground": "#d400ff"
}
}
You can change the font style and color.
Upvotes: 2