yep, more dotfiles

feat(jujutsu): use a minimalistic template for jj log

+31
+31
home-manager/fragments/jujutsu.nix
··· 33 33 git.sign-on-push = true; 34 34 }; 35 35 36 + template-aliases = { 37 + custom_log_compact = '' 38 + if(root, 39 + format_root_commit(self), 40 + label(if(current_working_copy, "working_copy"), 41 + concat( 42 + separate(" ", 43 + format_short_change_id_with_hidden_and_divergent_info(self), 44 + format_short_signature_oneline(author), 45 + bookmarks, 46 + tags, 47 + working_copies, 48 + if(conflict, label("conflict", "conflict")), 49 + if(config("ui.show-cryptographic-signatures").as_boolean(), 50 + format_short_cryptographic_signature(signature)), 51 + if(empty, label("empty", "(empty)")), 52 + if(description, 53 + description.first_line(), 54 + label(if(empty, "empty"), description_placeholder), 55 + ), 56 + ) ++ "\n", 57 + ), 58 + ) 59 + ) 60 + ''; 61 + }; 62 + 63 + templates = { 64 + log = "custom_log_compact"; 65 + }; 66 + 36 67 ui = { 37 68 default-command = "log"; 38 69