Skip to content

Instantly share code, notes, and snippets.

@smuuf
Last active March 23, 2025 19:37
Show Gist options
  • Save smuuf/d807ecc7402ca29fa2a1c2b3b004c180 to your computer and use it in GitHub Desktop.
Save smuuf/d807ecc7402ca29fa2a1c2b3b004c180 to your computer and use it in GitHub Desktop.
Settings for vscode highlight extension
{
// PHP highlights for https://github.com/fabiospampinato/vscode-highlight
"highlight.regexes": {
"(NOTE:)\\s": {
"regexFlags": "g",
"filterLanguageRegex": ".*",
"decorations": [
{
"color": "#CFC8A6",
"backgroundColor": "#CFC8A440",
"fontStyle": "italic",
"fontWeight": "bold",
},
],
},
"(WARN(ING)?:)\\s": {
"regexFlags": "g",
"filterLanguageRegex": ".*",
"decorations": [
{
"color": "#e8851b",
"backgroundColor": "#e8851b40",
"fontStyle": "italic",
"fontWeight": "bold",
},
],
},
"(TODO:)\\s": {
"regexFlags": "g",
"filterLanguageRegex": ".*",
"decorations": [
{
"color": "#cb1ed7",
"backgroundColor": "#cb1ed740",
"fontStyle": "italic",
"fontWeight": "bold",
},
],
},
"(?<=\\s)(private)(\\s+static)?(\\s+async)?\\sfunction": {
"regexFlags": "g",
"filterLanguageRegex": "(php|typescript|js)",
"decorations": [
{
"color": "#dddddd",
"backgroundColor": "#dddddd40",
"after": {
"contentText": " 🔏"
}
},
]
},
"(?<=\\s)(protected)(\\s+static)?(\\s+async)?\\sfunction": {
"regexFlags": "g",
"filterLanguageRegex": "(php|typescript|js)",
"decorations": [
{
"color": "#aac1f3",
"backgroundColor": "#aac1f340",
"after": {
"contentText": " 🛡️"
}
},
]
},
"(?<=\\s)(static)\\sfunction": {
"regexFlags": "gs",
"filterLanguageRegex": "(php|typescript|js)",
"decorations": [
{
"color": "#7CCBF8",
"backgroundColor": "#7CCBF840",
"after": {
"contentText": " 🧊"
}
},
]
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment