From 52ea7959d49880c505274613837c885eef4b2aa3 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Fri, 29 Dec 2023 23:56:01 -0700 Subject: [PATCH] Change the default VSC tabSize to be nicer --- .vscode/settings.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 03f717a..7b333e9 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,7 @@ { - "files.autoSave": "onWindowChange" + "files.autoSave": "onWindowChange", + "editor.tabSize": 2, + "[javascript]": { + "editor.tabSize": 4 + } } \ No newline at end of file