DEV Community

Discussion on: Native Bracket Pair Colourization in VS Code

Collapse
 
100lvlmaster profile image
Navin Kodag

I like this. But I'd also like those lines that connect enclosing brackets.

Collapse
 
phongduybui profile image
Phong Duy Bui • Edited

Yes, you can by add this line to setting.json file. it's built in
"editor.guides.bracketPairs": true

Collapse
 
100lvlmaster profile image
Navin Kodag

worked like a charm, thanks

{
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true
}
Enter fullscreen mode Exit fullscreen mode