@@ -37,6 +37,16 @@ This is only meant as a reference for what config options exist, and what their
37
37
``` yaml
38
38
# Config relating to the Lazygit UI
39
39
gui :
40
+ # See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#custom-author-color
41
+ authorColors : {}
42
+
43
+ # See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#custom-branch-color
44
+ # Deprecated: use branchColorPatterns instead
45
+ branchColors : {}
46
+
47
+ # See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#custom-branch-color
48
+ branchColorPatterns : {}
49
+
40
50
# The number of lines you scroll by when scrolling the main window
41
51
scrollHeight : 2
42
52
@@ -341,12 +351,21 @@ git:
341
351
# Deprecated: Use `allBranchesLogCmds` instead.
342
352
allBranchesLogCmd : git log --graph --all --color=always --abbrev-commit --decorate --date=relative --pretty=medium
343
353
354
+ # Commands used to display git log of all branches in the main window, they will be cycled in order of appearance (array of strings)
355
+ allBranchesLogCmds : []
356
+
344
357
# If true, do not spawn a separate process when using GPG
345
358
overrideGpg : false
346
359
347
360
# If true, do not allow force pushes
348
361
disableForcePushing : false
349
362
363
+ # See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#predefined-commit-message-prefix
364
+ commitPrefix : []
365
+
366
+ # See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#predefined-commit-message-prefix
367
+ commitPrefixes : {}
368
+
350
369
# See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#predefined-branch-name-prefix
351
370
branchPrefix : " "
352
371
459
478
# If true, don't display introductory popups upon opening Lazygit.
460
479
disableStartupPopups : false
461
480
481
+ # User-configured commands that can be invoked from within Lazygit
482
+ # See https://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md
483
+ customCommands : []
484
+
485
+ # See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#custom-pull-request-urls
486
+ services : {}
487
+
462
488
# What to do when opening Lazygit outside of a git repo.
463
489
# - 'prompt': (default) ask whether to initialize a new repo or open in the most recent repo
464
490
# - 'create': initialize a new repo
0 commit comments