From 11686683088c72bca9e1ecd3fc470b32344ebdfd Mon Sep 17 00:00:00 2001 From: Jake Jarvis Date: Thu, 13 Aug 2020 22:19:00 -0400 Subject: [PATCH] Update devcontainer.json --- devcontainer.json | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/devcontainer.json b/devcontainer.json index e1aab1e4..252d4f03 100644 --- a/devcontainer.json +++ b/devcontainer.json @@ -2,7 +2,13 @@ "name": "jarv.is", "image": "mcr.microsoft.com/vscode/devcontainers/javascript-node:0-14", "settings": { - "terminal.integrated.shell.linux": "/bin/zsh" + "editor.fontFamily": "'Source Code Pro', Menlo, Monaco, 'Courier New', monospace", + "editor.fontSize": 14, + "editor.letterSpacing": 0.2, + "editor.lineHeight": 23, + "editor.minimap.enabled": false, + "terminal.integrated.shell.linux": "/bin/zsh", + "workbench.colorTheme": "GitHub Dark" }, "extensions": [ "budparr.language-hugo-vscode", @@ -12,8 +18,7 @@ "stylelint.vscode-stylelint" ], "forwardPorts": [ - 1337, - 9337 + 1337 ], "postCreateCommand": "yarn install" }