feat: add auto_run_commands and auto_run_time_seconds config options

This commit is contained in:
CJ van den Berg 2025-12-06 21:42:56 +01:00
parent de73875676
commit 921c17de3c
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 35 additions and 0 deletions

View file

@ -32,6 +32,9 @@ limit_auto_save_file_types: ?[]const []const u8 = null, // null means *all*
enable_prefix_keyhints: bool = true,
enable_auto_find: bool = true,
auto_run_time_seconds: usize = 360, //seconds
auto_run_commands: ?[]const []const u8 = null, // a list of simple commands
indent_size: usize = 4,
tab_width: usize = 8,
indent_mode: IndentMode = .auto,