vscode: wrap commit messages at column 72 by default

When configuring VS Code as core.editor (via `code --wait`), we really want to adhere to the Git conventions of wrapping commit messages. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Johannes Schindelin committed Jul 30, 2018 at 08:42 UTC f2a3b6839477fe623edb0d2113a58acac8821596
1 file changed +4
contrib/vscode/init.sh
+4
@@ -17,6 +17,10 @@ cat >.vscode/settings.json.new <<\EOF ||
17 {
18 "C_Cpp.intelliSenseEngine": "Default",
19 "C_Cpp.intelliSenseEngineFallback": "Disabled",
20 + "[git-commit]": {
21 + "editor.wordWrap": "wordWrapColumn",
22 + "editor.wordWrapColumn": 72
23 + },
24 "files.associations": {
25 "*.h": "c",
26 "*.c": "c"