From 32b419c5f56552c290e2b4498e85598cc574de7e Mon Sep 17 00:00:00 2001 From: Artem Sheremet Date: Sat, 28 Mar 2020 17:31:12 +0100 Subject: [PATCH] Enable git in vscode, but only for the gutter --- .config/Code/User/settings.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.config/Code/User/settings.json b/.config/Code/User/settings.json index 64746d4..a99d2bb 100644 --- a/.config/Code/User/settings.json +++ b/.config/Code/User/settings.json @@ -20,8 +20,6 @@ "editor.rulers": [ 80 ], - // Disable git support (and annoying popups) in IDE - "git.enabled": false, // Disable [confusing] file icons in Explorer "workbench.iconTheme": null, "editor.codeActionsOnSave": { @@ -49,5 +47,9 @@ "window.newWindowDimensions": "maximized", "[typescript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" - } + }, + "git.decorations.enabled": false, + "git.detectSubmodules": false, + "git.enableStatusBarSync": false, + "git.ignoreMissingGitWarning": true }