font size setting and app restart are not required

master
dipnlik 2017-09-18 08:57:49 -03:00
rodzic 5b4ba27eec
commit 4877c83c63
1 zmienionych plików z 8 dodań i 8 usunięć

@ -4,16 +4,16 @@ Add `"editor.fontLigatures": true` to `settings.json`:
To open `settings.json`, from the `File` menu choose `Preferences`, `Settings` or use keyboard shortcut <kbd>Ctrl</kbd>+<kbd>,</kbd>. Then paste the following lines and restart VS code:
To open `settings.json`, from the `File` menu choose `Preferences`, `Settings` or use keyboard shortcut <kbd>Ctrl</kbd>+<kbd>,</kbd>. Then paste the following lines and save the file.
```json
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.fontLigatures": true
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true
```
If this doesn't work for you, wrap the "Fira Code" section with additional apostrophes like so:
```json
If this doesn't work for you, you can try:
1. restarting VS Code;
1. wrapping the "Fira Code" section with additional apostrophes:
```json
"editor.fontFamily": "'Fira Code'",
"editor.fontSize": 14,
"editor.fontLigatures": true
```
```