From 171f1868a9c2efac811ea1e986e33901151dfb58 Mon Sep 17 00:00:00 2001 From: Doug Ouverson Date: Wed, 8 Aug 2018 17:38:47 -0400 Subject: [PATCH] Left out a comma. --- VS-Code-Instructions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VS-Code-Instructions.md b/VS-Code-Instructions.md index 0ae1a70..3e31192 100644 --- a/VS-Code-Instructions.md +++ b/VS-Code-Instructions.md @@ -7,7 +7,7 @@ Add `"editor.fontLigatures": true` to `settings.json`: To open `settings.json`, from the `File` menu choose `Preferences`, `Settings` or use keyboard shortcut Ctrl+, (Cmd+, on Mac). Then paste the following lines and save the file. ```json "editor.fontFamily": "Fira Code", -"editor.fontLigatures": true +"editor.fontLigatures": true, ``` If this doesn't work for you, you can try: @@ -15,5 +15,5 @@ If this doesn't work for you, you can try: 1. wrapping the "Fira Code" section with additional apostrophes: ```json "editor.fontFamily": "'Fira Code'", - "editor.fontLigatures": true + "editor.fontLigatures": true, ```