Eric Bower
·
2026-01-13
config.toml
1#:schema https://jj-vcs.github.io/jj/latest/config-schema.json
2
3[user]
4name = "Eric Bower"
5email = "me@erock.io"
6
7[diff]
8tool = "delta"
9
10[ui]
11diff-formatter = ":git" # required by `delta`
12pager=["delta", "--pager", "less -FRX"] # Keeps output from the terminal after closing the pager
13default-command = "log"
14
15# These options allow for `jj diff` and `jj show` to clear the output from the terminal after closing the pager.
16[[--scope]]
17--when.commands = ["diff", "show"]
18
19[--scope.ui]
20pager = "delta"
21
22[aliases]
23tug = ["bookmark", "move", "--from", "heads(::@- & bookmarks())", "--to", "@-"]