Configuration files

jj: update default description to include a diff

Changed files
+13
.config
+13
.config/jj/config.toml
··· 17 17 18 18 [template-aliases] 19 19 'format_short_signature(signature)' = 'signature' 20 + 21 + [templates] 22 + draft_commit_description = ''' 23 + concat( 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 + indent(" " ,diff.git()), 31 + ) 32 + '''