2022-07-14 07:16:06 +00:00
|
|
|
# Basic template of config settings
|
|
|
|
|
|
|
|
# Don't forget to change these to your own details!
|
2024-02-08 00:32:41 +00:00
|
|
|
user.name = "YOUR NAME"
|
2022-07-14 07:16:06 +00:00
|
|
|
user.email = "YOUR_EMAIL@example.com"
|
|
|
|
|
|
|
|
ui.color = "auto" # the default
|
|
|
|
# ui.color = never # no color
|
|
|
|
|
2023-08-10 15:50:25 +00:00
|
|
|
ui.editor = "pico" # the default on Unix
|
2022-07-14 07:16:06 +00:00
|
|
|
# ui.editor = "vim"
|
|
|
|
|
2023-10-25 19:28:05 +00:00
|
|
|
ui.diff-editor = ":builtin" # default, internal TUI tool
|
|
|
|
# ui.diff-editor = "meld"
|
2022-10-30 08:23:45 +00:00
|
|
|
# ui.diff-editor = "vimdiff"
|
2022-07-14 07:16:06 +00:00
|
|
|
|
2022-10-30 08:23:45 +00:00
|
|
|
ui.merge-editor = "meld" # default
|
2023-10-25 03:36:31 +00:00
|
|
|
# ui.merge-editor = "vscode"
|
2022-10-30 08:23:45 +00:00
|
|
|
# ui.merge-editor = "vimdiff"
|
|
|
|
# ui.merge-editor = "kdiff3"
|
|
|
|
|
2023-02-16 03:28:43 +00:00
|
|
|
# Relative timestamp rendered as "x days/hours/seconds ago"
|
|
|
|
template-aliases.'format_timestamp(timestamp)' = 'timestamp.ago()'
|
|
|
|
|
2023-10-25 03:36:31 +00:00
|
|
|
# The four merge tools listed above are pre-configured. For detailed information
|
2022-10-30 08:23:45 +00:00
|
|
|
# about how to change the default configuration or how to configure another tool,
|
|
|
|
# see documentation in config.md. An example:
|
|
|
|
|
|
|
|
# merge-tools.meld.program = "C:\\Program Files\\Meld\\meld.exe" # If not in PATH
|
2024-02-08 00:32:41 +00:00
|
|
|
|
|
|
|
# Change the default push/fetch remote for `jj git push` and `jj git fetch`
|
|
|
|
# git.fetch = "upstream"
|
|
|
|
# git.push = "myfork"
|