Last active
December 25, 2024 05:11
vscode-colorized-brackets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
// Controls whether bracket pair colorization is enabled or not. Use 'workbench.colorCustomizations' to override the bracket highlight colors. | |
"editor.bracketPairColorization.enabled": true, | |
// Controls whether the editor should render indent guides. | |
"editor.guides.indentation": true, | |
// Controls whether bracket pair guides are enabled or not. | |
// - true: Enables bracket pair guides. | |
// - active: Enables bracket pair guides only for the active bracket pair. | |
// - false: Disables bracket pair guides. | |
"editor.guides.bracketPairs": "active", | |
// Controls whether horizontal bracket pair guides are enabled or not. | |
// - true: Enables horizontal guides as addition to vertical bracket pair guides. | |
// - active: Enables horizontal guides only for the active bracket pair. | |
// - false: Disables horizontal bracket pair guides. | |
"editor.guides.bracketPairsHorizontal": "active", | |
// Controls whether the editor should highlight the active indent guide. | |
"editor.guides.highlightActiveIndentation": true, | |
// Controls whether bracket pair guides are enabled or not. | |
"editor.guides.highlightActiveBracketPair": true, | |
// Defines the bracket symbols that increase or decrease the indentation. | |
"editor.language.brackets": [ | |
["[", "]"], | |
["(", ")"], | |
["{", "}"] | |
], | |
// Defines the bracket pairs that are colorized by their nesting level if bracket pair colorization is enabled. | |
"editor.language.colorizedBracketPairs": [ | |
["[", "]"], | |
["(", ")"], | |
["{", "}"] | |
], | |
"workbench.colorCustomizations": { | |
"editorBracketHighlight.foreground1": "#fac928", | |
"editorBracketHighlight.foreground2": "#c122e9", | |
"editorBracketHighlight.foreground3": "#057aff", | |
"editorBracketHighlight.foreground4": "#00e74d", | |
"editorBracketHighlight.foreground5": "#f51384", | |
"editorBracketHighlight.foreground6": "#19f9d8", | |
"editorBracketPairGuide.background1": "#fac9289E", | |
"editorBracketPairGuide.background2": "#c122e99E", | |
"editorBracketPairGuide.background3": "#057aff9E", | |
"editorBracketPairGuide.background4": "#00e74d9E", | |
"editorBracketPairGuide.background5": "#f513849E", | |
"editorBracketPairGuide.background6": "#19f9d89E", | |
"editorBracketPairGuide.activeBackground1": "#FAC9289E", | |
"editorBracketPairGuide.activeBackground2": "#C122E99E", | |
"editorBracketPairGuide.activeBackground3": "#057AFF9E", | |
"editorBracketPairGuide.activeBackground4": "#00E7499E", | |
"editorBracketPairGuide.activeBackground5": "#F513849E", | |
"editorBracketPairGuide.activeBackground6": "#19F9D89E" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment