Skip to content
This repository was archived by the owner on Nov 4, 2023. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
CoenraadS authored Jun 10, 2022
1 parent 7b01076 commit 78bef91
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,29 @@ Merry Christmas and Happy New Year!
---

## How to enable native bracket matching:
(With similar color scheme as this extension)

`settings.json`
```
{
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs":"active"
"editor.guides.bracketPairs": "active",
"editor.guides.bracketPairsHorizontal": "active",
"editor.guides.highlightActiveIndentation": false,
"workbench.colorCustomizations": {
// Bracket colors
"editorBracketHighlight.foreground1": "#FFD700",
"editorBracketHighlight.foreground2": "#DA70D6",
"editorBracketHighlight.foreground3": "#179fff",
// Inactive guide colors
"editorBracketPairGuide.background1": "#ffd90080",
"editorBracketPairGuide.background2": "#CC66CC80",
"editorBracketPairGuide.background3": "#87CEFA80",
// Active guide colors
"editorBracketPairGuide.activeBackground1": "#ffd90080",
"editorBracketPairGuide.activeBackground2": "#CC66CC80",
"editorBracketPairGuide.activeBackground3": "#87CEFA80",
}
}
```

Expand Down

0 comments on commit 78bef91

Please sign in to comment.