Take a look at the BracketHighlighter plugin .
Edit
Try this for yourPackages/User/bh_core.sublime-settings
{
"bracket_styles": {
"default": {
"icon": "dot",
"color": "brackethighlighter.default",
"style": "underline"
},
"unmatched": {
"icon": "question",
"style": "outline"
},
"curly": {
"icon": "curly_bracket",
"style": "full"
},
"round": {
"icon": "round_bracket",
"style": "full"
},
"square": {
"icon": "square_bracket",
"style": "full"
},
"angle": {
"icon": "angle_bracket",
"style": "full"
},
"tag": {
"icon": "tag",
"style": "outline"
},
"single_quote": {
"icon": "single_quote",
"style": "full"
},
"double_quote": {
"icon": "double_quote",
"style": "full"
},
"regex": {
"icon": "regex",
"style": "full"
}
}
}
source
share