fix(sapling): reorder the nvim diff def

When using nvim as a merge tool I had the files in the wrong order. It
was very confusing not having the local version in the middle and the
base and remote on ether side.
This commit is contained in:
Ade Attwood 2024-06-14 18:08:19 +01:00
parent 6cbd7eb9ae
commit e1fc3341e6

View file

@ -30,5 +30,5 @@ pager = delta
[merge-tools]
nvim_diff.executable = nvim
nvim_diff.args = -d $local $other $base
nvim_diff.args = -d $base $local $other
nvim_diff.priority = 1