My personal configuration files and scripts.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

jj: alias ll to detailed log

+5 -1
+5 -1
dot_config/jj/config.toml.tmpl
··· 46 46 [aliases] 47 47 d = ["diff"] 48 48 s = ["show"] 49 + ll = ["log", "-T", "builtin_log_detailed"] 50 + 51 + blame = ["file", "annotate"] 52 + 49 53 up = ["rebase", "--skip-emptied", "-d", "trunk()"] 54 + 50 55 # Note that if `@-` descends from a merge commit, the last bookmark on each 51 56 # contributing branch will be moved to `@-`. 52 57 tug = ["bookmark", "move", "--from", "streams()", "--to", "@-"] ··· 58 63 "-T", 59 64 "bookmarks.map(|b| b ++ ' ')" 60 65 ] 61 - blame = ["file", "annotate"] 62 66 63 67 [template-aliases] 64 68 "in_branch(x)" = 'x.contained_in("immutable_heads()..bookmarks()")'