summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorisak102 <90389894+isak102@users.noreply.github.com>2023-04-25 14:40:07 +0200
committerGitHub <noreply@github.com>2023-04-25 08:40:07 -0400
commit7d9bfd308a8bff537f3d49677e1b3b586b5a5fe6 (patch)
tree6263c66e3202a48a38ae8e55c1f2d729c0f466e4
parent8fd64868e8ed9a8248d8a29ae4be30920df197cd (diff)
Clarify how to use delta with `tmux` (#1402)
-rw-r--r--manual/src/tips-and-tricks/using-delta-with-tmux.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/manual/src/tips-and-tricks/using-delta-with-tmux.md b/manual/src/tips-and-tricks/using-delta-with-tmux.md
index 5df79ab4..2a8e6501 100644
--- a/manual/src/tips-and-tricks/using-delta-with-tmux.md
+++ b/manual/src/tips-and-tricks/using-delta-with-tmux.md
@@ -6,4 +6,9 @@ If you're using tmux, it's worth checking that 24 bit color is working correctly
set -ga terminal-overrides ",xterm-256color:Tc"
```
-and you may then need to quit tmux completely for it to take effect.
+and you may then need to quit tmux completely for it to take effect. Note that you may need to explicitly enable true color, either by using `--true-color=always` or by adding the following to your configuration file:
+
+```gitconfig
+[delta]
+ true-color = always
+```