Fix navigate option in git config example

The navigate option does not work when present in the `[core]` section of the git config because it is not a git option. It works correctly when present in the `[delta]` section.
This commit is contained in:
Maxim Doucet 2021-11-30 22:31:22 +01:00 committed by Dan Davison
parent 063816cf7b
commit 7d01125e14

View File

@ -20,13 +20,15 @@
```gitconfig
[core]
pager = delta
navigate = true
[interactive]
diffFilter = delta --color-only
[diff]
colorMoved = true
[delta]
navigate = true
```
## A syntax-highlighting pager for git, diff, and grep output