diff options
| author | David Czihak <git@dcz.at> | 2026-05-07 14:33:19 +0200 |
|---|---|---|
| committer | David Czihak <git@dcz.at> | 2026-05-07 14:33:19 +0200 |
| commit | ddf2de739068b5ff0866ccb1d067f3cb53a4fc55 (patch) | |
| tree | 1a77efe9d73a6172be3c37d29b321eadd4efe379 /examples/sample-config.zon | |
Initial commitv0.1.7
Diffstat (limited to 'examples/sample-config.zon')
| -rw-r--r-- | examples/sample-config.zon | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/examples/sample-config.zon b/examples/sample-config.zon new file mode 100644 index 0000000..b346a84 --- /dev/null +++ b/examples/sample-config.zon | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | .{ | ||
| 2 | .name = "nova-zig-example", | ||
| 3 | .enabled = true, | ||
| 4 | .targets = .{ | ||
| 5 | "native", | ||
| 6 | "wasm32-wasi", | ||
| 7 | }, | ||
| 8 | .retry = .{ | ||
| 9 | .max_attempts = 3, | ||
| 10 | .backoff_seconds = 2.5, | ||
| 11 | }, | ||
| 12 | .theme = .solarized, | ||
| 13 | .features = .{ | ||
| 14 | .language_server = true, | ||
| 15 | .tree_sitter = true, | ||
| 16 | .run_tasks = true, | ||
| 17 | .debug_adapter = false, | ||
| 18 | }, | ||
| 19 | } | ||
