๐Ÿ”’ Backup for my config files
dotfiles
0
fork

Configure Feed

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

change revision node to a circle format

Kacaii 594f1d90 764a17d0

+15 -4
+15 -4
.config/jj/config.toml
··· 10 10 [git] 11 11 write-change-id-header = true 12 12 13 + [templates] 14 + log_node = ''' 15 + coalesce( 16 + if(immutable, "โ—", "โ—‹") 17 + ) 18 + ''' 19 + 20 + [template-aliases] 21 + 'format_short_signature(signature)' = 'signature.name()' 22 + 23 + [revset-aliases] 24 + "stack()" = "ancestors(mutable() & (..@ | @::), 2)" 25 + "stack(x)" = "ancestors(mutable() & (..x | x::), 2)" 26 + "stack(x, n)" = "ancestors(mutable() & (..x | x::), n)" 27 + 13 28 [aliases] 14 29 fetch = ["git", "fetch"] 15 30 init = ["git", "init", "--colocate"] ··· 21 36 s = ["stack"] 22 37 stack = ["log", "-r", "stack()"] 23 38 24 - [revset-aliases] 25 - "stack()" = "ancestors(mutable() & (..@ | @::), 2)" 26 - "stack(x)" = "ancestors(mutable() & (..x | x::), 2)" 27 - "stack(x, n)" = "ancestors(mutable() & (..x | x::), n)" 28 39 29 40 [ui] 30 41 default-command = "log"