style(code-server): move manual settings to top of settings.json object

This commit is contained in:
Victor Westerlund 2025-12-21 12:26:50 +01:00
parent 294e77e082
commit 4247784e4e
Signed by: vlw
GPG key ID: D0AD730E1057DFC6

View file

@ -1,4 +1,14 @@
{
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "meta.function-call.generic.python",
"settings": {
"foreground": "#DCDCAA"
}
}
]
},
"workbench.colorTheme": "Default Dark Modern",
"keyboard.layout": "0000041D",
"editor.bracketPairColorization.enabled": false,
@ -22,15 +32,5 @@
"window.customMenuBarAltFocus": false,
"diffEditor.ignoreTrimWhitespace": false,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "meta.function-call.generic.python",
"settings": {
"foreground": "#DCDCAA"
}
}
]
}
"files.trimFinalNewlines": true
}