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

Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/85
This commit is contained in:
Victor Westerlund 2025-12-21 12:27:42 +01:00
parent 294e77e082
commit 0452863608

View file

@ -1,4 +1,14 @@
{ {
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "meta.function-call.generic.python",
"settings": {
"foreground": "#DCDCAA"
}
}
]
},
"workbench.colorTheme": "Default Dark Modern", "workbench.colorTheme": "Default Dark Modern",
"keyboard.layout": "0000041D", "keyboard.layout": "0000041D",
"editor.bracketPairColorization.enabled": false, "editor.bracketPairColorization.enabled": false,
@ -22,15 +32,5 @@
"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"
}
}
]
}
} }