add snapshot field in config to disable snapshots

This commit is contained in:
Dax Raad
2025-08-06 11:35:37 -04:00
parent b00b2ded4f
commit 28a4517ec6
2 changed files with 4 additions and 0 deletions

View File

@@ -233,6 +233,7 @@ export namespace Config {
theme: z.string().optional().describe("Theme name to use for the interface"),
keybinds: Keybinds.optional().describe("Custom keybind configurations"),
plugin: z.string().array().optional(),
snapshot: z.boolean().optional(),
share: z
.enum(["manual", "auto", "disabled"])
.optional()