From 9e3d6f5a9614db02bf5342bb33a0968ee835612b Mon Sep 17 00:00:00 2001 From: Matt Harden Date: Sun, 12 Mar 2017 21:00:36 -0700 Subject: [PATCH] The fontFamily expects a comma separated list apparently, and families with spaces have to be quoted within the JSON string. --- VS-Code-Instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VS-Code-Instructions.md b/VS-Code-Instructions.md index e902877..2b796cd 100644 --- a/VS-Code-Instructions.md +++ b/VS-Code-Instructions.md @@ -6,7 +6,7 @@ Add `"editor.fontLigatures": true` to `settings.json`: To open `settings.json`, from the `File` menu choose `Preferences`, `User Settings`. Then paste this: ```json - "editor.fontFamily": "Fira Code", + "editor.fontFamily": "'Fira Code'", "editor.fontSize": 14, "editor.fontLigatures": true ``` \ No newline at end of file