mirror of
https://codeberg.org/vlw/dotfiles.git
synced 2026-01-11 21:36:00 +01:00
fix(code-server): proper syntax highlighting for Python callables
This commit is contained in:
parent
efd96e9231
commit
22974b1a52
1 changed files with 11 additions and 1 deletions
|
|
@ -22,5 +22,15 @@
|
||||||
"window.customMenuBarAltFocus": false,
|
"window.customMenuBarAltFocus": false,
|
||||||
"diffEditor.ignoreTrimWhitespace": false,
|
"diffEditor.ignoreTrimWhitespace": false,
|
||||||
"files.insertFinalNewline": true,
|
"files.insertFinalNewline": true,
|
||||||
"files.trimFinalNewlines": true
|
"files.trimFinalNewlines": true,
|
||||||
|
"editor.tokenColorCustomizations": {
|
||||||
|
"textMateRules": [
|
||||||
|
{
|
||||||
|
"scope": "meta.function-call.generic.python",
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#DCDCAA"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue