repos / dotfiles

my dotfiles

dotfiles / dot_config / jj
Eric Bower  ·  2026-03-28

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[ui]
 8diff-formatter = ["difft", "--color=always", "$left", "$right"]
 9default-command = "log"
10
11# These options allow for `jj diff` and `jj show` to clear the output from the terminal after closing the pager.
12[[--scope]]
13--when.commands = ["diff", "show"]
14
15[aliases]
16tug = ["bookmark", "move", "--from", "heads(::@- & bookmarks())", "--to", "@-"]