Skip to content
This repository has been archived by the owner on Aug 16, 2021. It is now read-only.

Commit

Permalink
Add italics personalization section
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Olaleye authored and Jonathan Olaleye committed Dec 31, 2018
1 parent 45432d4 commit ba508a8
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,24 @@ For more info on theming, visit the [Extension Authoring Guide](https://code.vis
}
```

### Italics

The normal theme only uses italics in a few places: comments, parameters, and some special keywords (e.g. `this`). If you would prefer no italics at all, you can configure this in your settings...

```
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "No italics",
"scope": ["comment", "variable.language", "variable.parameter"],
"settings": {
"fontStyle": ""
}
}
]
}
```

### Tag Brackets `<>`

```
Expand Down

0 comments on commit ba508a8

Please sign in to comment.