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 ```gitconfig
[core] [core]
pager = delta pager = delta
navigate = true
[interactive] [interactive]
diffFilter = delta --color-only diffFilter = delta --color-only
[diff] [diff]
colorMoved = true colorMoved = true
[delta]
navigate = true
``` ```
## A syntax-highlighting pager for git, diff, and grep output ## A syntax-highlighting pager for git, diff, and grep output