1
1
mirror of https://github.com/tonsky/FiraCode.git synced 2024-07-04 16:06:26 +03:00

font size setting and app restart are not required

dipnlik 2017-09-18 08:57:49 -03:00
parent 5b4ba27eec
commit 4877c83c63

@ -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
```
```