From d9e4b231c7273ab141943397be90a8bfd5b24d67 Mon Sep 17 00:00:00 2001 From: IceSentry Date: Thu, 9 Sep 2021 00:25:38 -0400 Subject: [PATCH] configure colorizedBracketPairs --- editors/code/language-configuration.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/editors/code/language-configuration.json b/editors/code/language-configuration.json index 382484bc74..855b9966bb 100644 --- a/editors/code/language-configuration.json +++ b/editors/code/language-configuration.json @@ -9,6 +9,11 @@ ["(", ")"], ["<", ">"] ], + "colorizedBracketPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"] + ], "autoClosingPairs": [ { "open": "{", "close": "}" }, { "open": "[", "close": "]" },