feat: add commit age to git blame info

This commit is contained in:
CJ van den Berg 2026-02-13 12:22:52 +01:00
parent 030a2b86c1
commit fa71704a94
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
4 changed files with 66 additions and 4 deletions

View file

@ -353,6 +353,10 @@ pub fn build_exe(
.imports = &.{},
});
const time_fmt_mod = b.createModule(.{
.root_source_file = b.path("src/time_fmt.zig"),
});
const config_mod = b.createModule(.{
.root_source_file = b.path("src/config.zig"),
.imports = &.{
@ -668,6 +672,7 @@ pub fn build_exe(
.{ .name = "bin_path", .module = bin_path_mod },
.{ .name = "snippet", .module = snippet_mod },
.{ .name = "lsp_types", .module = lsp_types_mod },
.{ .name = "time_fmt", .module = time_fmt_mod },
},
});