Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Tokyo Night Light
Font used in the screenshots is [JetBrains Mono.](https://www.jetbrains.com/lp/mono/)

## Disabling Italics
Paste this into your [settings.json](https://code.visualstudio.com/docs/getstarted/settings#_settings-file-locations) to disable italics.
Paste this into your [settings.json](https://code.visualstudio.com/docs/getstarted/settings#_settings-file-locations) to disable italics for comments, storage, keyword Flow, vue attributes, and decorators.

```javascript
"editor.tokenColorCustomizations": {
Expand All @@ -33,7 +33,11 @@ Paste this into your [settings.json](https://code.visualstudio.com/docs/getstart
"meta.directive.vue entity.other.attribute-name.html",
"tag.decorator.js entity.name.tag.js",
"tag.decorator.js punctuation.definition.tag.js",
"storage.modifier"
"storage.modifier",
"string.quoted.docstring.multi",
"string.quoted.docstring.multi.python punctuation.definition.string.begin",
"string.quoted.docstring.multi.python punctuation.definition.string.end",
"string.quoted.docstring.multi.python constant.character.escape"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ig you can make the same thing with bold, quote, etc.

but this is a perfect way to do italic font 👍

],
"settings": {
"fontStyle": ""
Expand Down