chore: Update README

This commit is contained in:
Mattia Astorino 2018-02-11 14:36:43 +01:00
parent 0eeb5ea500
commit a12c8621bd
No known key found for this signature in database
GPG key ID: 7BE552533AB6D4E2

View file

@ -105,7 +105,7 @@ Type `Material Theme` and choose `Material Theme: Settings`, then select `Change
## Override theme colors ## Override theme colors
You can override the material theme ui and schemes colors by adding these theme-specific settings to your configuration. You can override the material theme ui and schemes colors by adding these theme-specific settings to your configuration.
```json ```js
"editor.tokenColorCustomizations": { "editor.tokenColorCustomizations": {
"[Material Theme]": { "[Material Theme]": {
"comments": "#229977" "comments": "#229977"
@ -122,7 +122,8 @@ You can override the material theme ui and schemes colors by adding these theme-
# Recommended settings for a better experience # Recommended settings for a better experience
```json ```js
{
// Controls the font family. // Controls the font family.
"editor.fontFamily": "Operator Mono", "editor.fontFamily": "Operator Mono",
// Controls the line height. Use 0 to compute the lineHeight from the fontSize. // Controls the line height. Use 0 to compute the lineHeight from the fontSize.
@ -130,7 +131,8 @@ You can override the material theme ui and schemes colors by adding these theme-
// Enables font ligatures // Enables font ligatures
"editor.fontLigatures": true, "editor.fontLigatures": true,
// Controls if file decorations should use badges. // Controls if file decorations should use badges.
"explorer.decorations.badges": false, "explorer.decorations.badges": false
}
``` ```
# Other resources # Other resources