feat(jujutsu): add jj conf
This commit is contained in:
parent
e1247c0c2b
commit
d8af9efc9b
1 changed files with 28 additions and 0 deletions
28
jujutsu/.config/jj/config.toml
Normal file
28
jujutsu/.config/jj/config.toml
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
|
||||||
|
[user]
|
||||||
|
name = "Bruno Carlin"
|
||||||
|
email = "dev@mail.bcarlin.net"
|
||||||
|
|
||||||
|
[ui]
|
||||||
|
default-command = "log"
|
||||||
|
graph.style = "curved"
|
||||||
|
editor = "nvim"
|
||||||
|
diff-editor = ["nvim", "-c", "DiffEditor $left $right $output"]
|
||||||
|
merge-editor = "nvim"
|
||||||
|
diff.tool = ["delta", "--syntax-theme", "Solarized (dark)", "$left", "$right"]
|
||||||
|
|
||||||
|
[merge-tools.nvim]
|
||||||
|
diff-args = ["-d", "$left", "$right"]
|
||||||
|
merge-args = ["-d", "$left", "$base", "$right", "-c", "wincmd l"]
|
||||||
|
merge-tool-edits-conflict-markers = true
|
||||||
|
|
||||||
|
[colors]
|
||||||
|
"rest" = "bright green"
|
||||||
|
"working_copy empty" = "green"
|
||||||
|
"working_copy empty description placeholder" = "green"
|
||||||
|
"working_copy commit_id" = "blue"
|
||||||
|
"working_copy change_id" = "magenta"
|
||||||
|
"working_copy timestamp" = "cyan"
|
||||||
|
|
||||||
|
[git]
|
||||||
|
subprocess = true
|
Loading…
Add table
Reference in a new issue