refactored config plugin defintions

This commit is contained in:
2026-04-21 14:18:52 -07:00
parent bc95a5c45d
commit 90787bd0a2
7 changed files with 439 additions and 321 deletions
+8 -3
View File
@@ -43,20 +43,25 @@ def global_config() -> List[Dict[str, Any]]:
{
"key": "debug",
"label": "Debug Output",
"group": "Runtime",
"type": "boolean",
"default": "false",
"choices": ["true", "false"]
"choices": ["true", "false"],
},
{
"key": "auto_update",
"label": "Auto-Update",
"group": "Runtime",
"type": "boolean",
"default": "true",
"choices": ["true", "false"]
"choices": ["true", "false"],
},
{
"key": "table_appearance",
"label": "Table Appearance",
"group": "Display",
"default": "rainbow",
"choices": ["plain", "bw-striped", "rainbow"]
"choices": ["plain", "bw-striped", "rainbow"],
}
]