@@ -37,6 +37,16 @@ This is only meant as a reference for what config options exist, and what their
3737``` yaml
3838# Config relating to the Lazygit UI
3939gui :
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+
4050 # The number of lines you scroll by when scrolling the main window
4151 scrollHeight : 2
4252
@@ -341,12 +351,21 @@ git:
341351 # Deprecated: Use `allBranchesLogCmds` instead.
342352 allBranchesLogCmd : git log --graph --all --color=always --abbrev-commit --decorate --date=relative --pretty=medium
343353
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+
344357 # If true, do not spawn a separate process when using GPG
345358 overrideGpg : false
346359
347360 # If true, do not allow force pushes
348361 disableForcePushing : false
349362
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+
350369 # See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#predefined-branch-name-prefix
351370 branchPrefix : " "
352371
459478# If true, don't display introductory popups upon opening Lazygit.
460479disableStartupPopups : false
461480
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+
462488# What to do when opening Lazygit outside of a git repo.
463489# - 'prompt': (default) ask whether to initialize a new repo or open in the most recent repo
464490# - 'create': initialize a new repo
0 commit comments