repos / dotfiles

my dotfiles

dotfiles / dot_config / jj
Eric Bower  ·  2025-10-21

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
13
14# These options allow for `jj diff` and `jj show` to clear the output from the terminal after closing the pager.
15[[--scope]]
16--when.commands = ["diff", "show"]
17
18[--scope.ui]
19pager = "delta"