This commit is contained in:
Barak Michener 2025-01-03 11:32:31 -08:00
parent 03a7c0ef5d
commit 008be8a351

View file

@ -5,14 +5,14 @@ email = "me@barakmich.com"
[ui]
editor = "nvim"
#default-command = ["log", "--reversed"]
default-command = ["util", "exec", "--", "bash", "-c", "jj log --reversed && jj diff -s"]
default-command = ["util", "exec", "--", "bash", "-c", "jj log --reversed --no-pager && jj diff -s"]
diff.format = "git"
[revset-aliases]
'nearby(x)' = 'descendants(ancestors(@, x))'
'nearby(x)' = 'descendants(ancestors(@, x))::'
[revsets]
log = "nearby(10) | @..main@origin | main@origin::@ | @:: | visible_heads() ~ bookmarks()"
log = "nearby(8) | @..main@origin | main@origin::@ | @:: | visible_heads() ~ bookmarks()"
[colors]
@ -22,6 +22,8 @@ log = "nearby(10) | @..main@origin | main@origin::@ | @:: | visible_heads() ~ bo
push-bookmark-prefix = "barakmich/"
[alias]
bm = ["bookmark", "move", "--to", "@-"]
bm = ["bookmark", "move", "--to"]
"bm." = ["bookmark", "move", "--to", "@"]
pull = ["git", "fetch"]
fetch = ["git", "fetch"]
push = ["git", "push"]