fix(code-server): proper syntax highlighting for Python callables (#84)

Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/84
This commit is contained in:
Victor Westerlund 2025-12-21 12:11:30 +01:00
parent efd96e9231
commit 294e77e082

View file

@ -22,5 +22,15 @@
"window.customMenuBarAltFocus": false,
"diffEditor.ignoreTrimWhitespace": false,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true
"files.trimFinalNewlines": true,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "meta.function-call.generic.python",
"settings": {
"foreground": "#DCDCAA"
}
}
]
}
}