how to set up bracket pair colorizer 2 code example
Example 1: how to custom the color of bracket pair colorizer
"bracketPairColorizer.independentPairColors": [
[
"()",
[
"Yellow"
],
"Red" // use when right bracket is missing
],
[
"[]",
[
"Purple"
],
"Red"
],
[
"{}",
[
"Blue"
],
"Red"
]
]
Example 2: how to custom the color of bracket pair colorizer
"bracketPairColorizer.colorMode": "Independent",