summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorCokile <kelvintgx@gmail.com>2021-12-07 18:10:29 +0800
committerJesse Duffield <jessedduffield@gmail.com>2021-12-25 11:54:27 +1100
commit3771f9c98b8083f65599dc8c1a4262bf46d8ff27 (patch)
treed54bbf190749992378109b845b2a8cd70b8cf1a4 /docs
parent4f627e5d27ed0b1f5767bd5b629616b30a9fa011 (diff)
support config unified color for commit authors
Diffstat (limited to 'docs')
-rw-r--r--docs/Config.md24
1 files changed, 22 insertions, 2 deletions
diff --git a/docs/Config.md b/docs/Config.md
index 5bd531014..b1329f77d 100644
--- a/docs/Config.md
+++ b/docs/Config.md
@@ -50,8 +50,6 @@ gui:
showRandomTip: true
showCommandLog: true
commandLogSize: 8
- authorColors: # in case you're not happy with the randomly assigned colour
- 'John Smith': '#ff0000'
git:
paging:
colorArg: always
@@ -376,6 +374,28 @@ Alternatively you may have bold fonts disabled in your terminal, in which case e
If you're still having trouble please raise an issue.
+## Custom Author Color
+
+Lazygit will assgin a random color for every commit author in the commits pane by default.
+
+You can customize the color in case you're not happy with the randomly assigned one:
+
+```yaml
+gui:
+ authorColors:
+ 'John Smith': '#ff0000 # use red for John Smith
+```
+
+You can use wildcard to set a unified color in case your are lazy to customize the color for every author or you are just want a single color for all/other authors:
+```yaml
+gui:
+ authorColors:
+ # use red for John Smith
+ 'John Smith': '#ff0000
+ # use blue for other authors
+ '*': '#0000ff'
+```
+
## Example Coloring
![border example](../../assets/colored-border-example.png)