Dotfiles/site-modules/core/templates/sapling.conf.liquid
Ade Attwood 659328a7b8 fix(sapling): setup nvim as the diff tool
There built in diff tool points to vimdiff. This dose not have all of my
key bindings and all the nice features I have setup in nvim.
2024-01-29 20:20:41 +00:00

32 lines
912 B
Text

#
# !! DO NOT EDIT !!
# !! This file is managed by configz !!
#
[ui]
# name and email, e.g.
username = {{ data.user_name }} <{{ data.email }}>
# Don't let the sl cli colors interfere with the delta colors. The diff
# highlighting dose not work well when the two colors are conflicting each
# other.
#
# uncomment to disable color in command output
# (see 'sl help color' for details)
color = never
# uncomment to disable command output pagination
# (see 'sl help pager' for details)
#paginate = always
# User delta as the pager so that the diff is highlighted nicely.in the
# terminal. This give a better diff coloring than the built in sl pager, also
# keeps things looking the same as git so I can keep the familiarity when
# switching between git and sl.
[pager]
pager = delta
[merge-tools]
nvim_diff.executable = nvim
nvim_diff.args = -d $local $other $base
nvim_diff.priority = 1