The editor tick is hardcoded at 100 ms where the timer is scheduled in src/main.zig (PeriodicTasks / timer_service.setInterval(100, ...)). Add editor.tick_interval_ms to the config schema (src/config/schema.zig), clamp it to something sane (e.g. 20–1000 ms), and use it when scheduling.
Good first issue: one config key, one call site, plus a line in the README config table.
The editor tick is hardcoded at 100 ms where the timer is scheduled in
src/main.zig(PeriodicTasks/timer_service.setInterval(100, ...)). Addeditor.tick_interval_msto the config schema (src/config/schema.zig), clamp it to something sane (e.g. 20–1000 ms), and use it when scheduling.Good first issue: one config key, one call site, plus a line in the README config table.