refactored config plugin defintions
This commit is contained in:
+8
-3
@@ -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"],
|
||||
}
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user