From 15519e34f206dc063aa469a0c6d439f1436bbab8 Mon Sep 17 00:00:00 2001 From: chtenb Date: Tue, 25 Jan 2022 22:11:28 +0100 Subject: [PATCH] Update color-moved-support.md --- manual/src/color-moved-support.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/manual/src/color-moved-support.md b/manual/src/color-moved-support.md index cd301221e..f917a7d90 100644 --- a/manual/src/color-moved-support.md +++ b/manual/src/color-moved-support.md @@ -20,7 +20,12 @@ This feature allows all of git's color-moved options to be rendered using delta map-styles = bold purple => syntax magenta, bold cyan => syntax blue ``` -There is a pair of features provided in [themes.config](https://github.com/chtenb/delta/blob/master/themes.gitconfig) called `zebra-dark` and `zebra-light` which utilise the moved colors by displaying them as a faint background color on the affected lines while keeping syntax highlighting as the foreground color. You can enable one of these features by stacking it upon the theme you are using. +There is a pair of features provided in [themes.config](https://github.com/chtenb/delta/blob/master/themes.gitconfig) called `zebra-dark` and `zebra-light` which utilise the moved colors by displaying them as a faint background color on the affected lines while keeping syntax highlighting as the foreground color. You can enable one of these features by stacking it upon the theme you are using, like as follows + +```gitconfig +[delta] + features = my-dark-theme zebra-dark +```
image