this repo has no description

add jj config

tjh.dev 16fb126f 0550bfd9

verified
+26
+26
.config/jj/config.toml
··· 1 + "$schema" = "https://jj-vcs.github.io/jj/latest/config-schema.json" 2 + 3 + [user] 4 + name = "tjh" 5 + email = "x@tjh.dev" 6 + 7 + [ui] 8 + default-command = "log" 9 + show-cryptographic-signatures = true 10 + 11 + [colors] 12 + "diff token" = { underline = false } 13 + 14 + [signing] 15 + behaviour = "drop" 16 + backend = "ssh" 17 + key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIG+imhcpRamxupqEtiemCGemYQeLpWbPZdD1wh4Y1rcl" 18 + backends.ssh.allowed-signers = "~/.ssh/allowed_signers" 19 + 20 + [git] 21 + sign-on-push = true 22 + 23 + [templates] 24 + commit_trailers = ''' 25 + format_signed_off_by_trailer(self) 26 + ++ if(!trailers.contains_key("Change-Id"), format_gerrit_change_id_trailer(self))'''