summaryrefslogtreecommitdiff
path: root/.config/jj/config.toml
blob: 5c9b4fd3814c559f540e71c837b2268766f8060d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"$schema" = "https://jj-vcs.github.io/jj/latest/config-schema.json"

[ui]
default-command = "log"
show-cryptographic-signatures = true

[user]
name = "mhsn"
email = "mail@mhsn.net"

[signing]
behavior = "own"
backend = "gpg"
key = "mail@mhsn.net"

[template-aliases]
'format_short_cryptographic_signature(sig)' = '''
  if(sig,
    sig.status(),
    "(no sig)",
  )
'''