Configuration files
at dev 545 B view raw
1[user] 2name = "karei" 3email = "mail@karei.dev" 4 5[ui] 6default-command = "status" 7diff-editor = ":builtin" 8 9[aliases] 10b = ["bookmark"] 11bm = ["bookmark", "move"] 12bu = ["bookmark", "move", "--to", "@-"] 13 14[signing] 15behavior = "own" 16backend = "gpg" 17 18[template-aliases] 19'format_short_signature(signature)' = 'signature' 20 21[templates] 22draft_commit_description = ''' 23concat( 24 description, 25 surround( 26 "\nJJ: This commit contains the following changes:\n", "", 27 indent("JJ: ", diff.summary()), 28 ), 29 "\nJJ: ignore-rest\n", 30 diff.git(), 31) 32'''