diff --git a/VS-Code-Instructions.md b/VS-Code-Instructions.md index fefe000..d93ae4a 100644 --- a/VS-Code-Instructions.md +++ b/VS-Code-Instructions.md @@ -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 Ctrl+,. Then paste the following lines and restart VS code: +To open `settings.json`, from the `File` menu choose `Preferences`, `Settings` or use keyboard shortcut Ctrl+,. 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 -``` \ No newline at end of file + ```