summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxim Doucet <maxim.doucet@gmail.com>2021-11-30 22:31:22 +0100
committerDan Davison <dandavison7@gmail.com>2021-11-30 17:23:49 -0500
commit7d01125e14f80c8d5be83e746abb0a3860f8e79a (patch)
tree198c9918efafa88700dd3ae1da497b22bd3cdd02
parent063816cf7bac0077bb600232e54be99da57f5bed (diff)
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.
-rw-r--r--README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index 20f3ecc2..f535ac3c 100644
--- a/README.md
+++ b/README.md
@@ -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