From 16fb54dfe5b150313602c101aafde101f471377a Mon Sep 17 00:00:00 2001 From: Ruslan Sayfutdinov Date: Mon, 13 Jan 2025 13:05:47 +0000 Subject: [PATCH] docs: Update docs for using delta --- assets/chezmoi.io/docs/user-guide/tools/diff.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/assets/chezmoi.io/docs/user-guide/tools/diff.md b/assets/chezmoi.io/docs/user-guide/tools/diff.md index d782b9489e3..8db50e06092 100644 --- a/assets/chezmoi.io/docs/user-guide/tools/diff.md +++ b/assets/chezmoi.io/docs/user-guide/tools/diff.md @@ -47,13 +47,12 @@ following to your config: ## Use delta as the diff tool To use [delta](https://dandavison.github.io/delta/) as the diff tool you must -set both `diff.command` and `diff.pager` to delta, for example: +set `diff.pager` to delta, for example: === "TOML" ```toml title="~/.config/chezmoi/chezmoi.toml" [diff] - command = "delta" pager = "delta" ``` @@ -61,7 +60,6 @@ set both `diff.command` and `diff.pager` to delta, for example: ```yaml title="~/.config/chezmoi/chezmoi.yaml" diff: - command: "delta" pager: "delta" ```