mirror of
https://github.com/jj-vcs/jj.git
synced 2025-12-23 06:01:01 +00:00
This allows users to override the external tool set in ~/.jjconfig.toml. The config variable is renamed to ui.diff-formatter to be consistent with the other diff/merge editor settings. --tool=:<format> support will be added separately. Closes #3327
29 lines
684 B
TOML
29 lines
684 B
TOML
#:schema ../../../src/config-schema.json
|
|
[ui]
|
|
always-allow-large-revsets = true
|
|
default-command = "status"
|
|
default-description = "feat: "
|
|
diff-formatter = ":git"
|
|
color = "always"
|
|
paginate = "never"
|
|
pager = ":builtin"
|
|
diff-instructions = false
|
|
log-word-wrap = true
|
|
log-synthetic-elided-nodes = false
|
|
editor = "hx"
|
|
diff-editor = "meld"
|
|
merge-editor = "meld-3"
|
|
conflict-marker-style = "git"
|
|
show-cryptographic-signatures = true
|
|
bookmark-list-sort-keys = ["author-email", "author-date-", "committer-name"]
|
|
# bookmark-list-sort-keys = "author-name"
|
|
|
|
[ui.streampager]
|
|
interface = "quit-quickly-or-clear-output"
|
|
wrapping = "word"
|
|
|
|
[ui.graph]
|
|
style = "ascii-large"
|
|
|
|
[ui.movement]
|
|
edit = true
|