repos / dotfiles

my dotfiles

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

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
13diff-editor = "nvim"
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"