40
40
# See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#custom-author-color
41
41
authorColors : {}
42
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
43
# See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#custom-branch-color
48
44
branchColorPatterns : {}
49
45
200
196
# If true, show jump-to-window keybindings in window titles.
201
197
showPanelJumps : true
202
198
203
- # Deprecated: use nerdFontsVersion instead
204
- showIcons : false
205
-
206
199
# Nerd fonts version to use.
207
200
# One of: '2' | '3' | empty string (default)
208
201
# If empty, do not show icons.
@@ -347,10 +340,6 @@ git:
347
340
# Command used when displaying the current branch git log in the main window
348
341
branchLogCmd : git log --graph --color=always --abbrev-commit --decorate --date=relative --pretty=medium {{branchName}} --
349
342
350
- # Command used to display git log of all branches in the main window.
351
- # Deprecated: Use `allBranchesLogCmds` instead.
352
- allBranchesLogCmd : git log --graph --all --color=always --abbrev-commit --decorate --date=relative --pretty=medium
353
-
354
343
# 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
344
allBranchesLogCmds : []
356
345
@@ -375,19 +364,6 @@ git:
375
364
376
365
# Config for showing the log in the commits view
377
366
log :
378
- # One of: 'date-order' | 'author-date-order' | 'topo-order' | 'default'
379
- # 'topo-order' makes it easier to read the git log graph, but commits may not
380
- # appear chronologically. See https://git-scm.com/docs/
381
- #
382
- # Deprecated: Configure this with `Log menu -> Commit sort order` (<c-l> in the commits window by default).
383
- order : topo-order
384
-
385
- # This determines whether the git graph is rendered in the commits panel
386
- # One of 'always' | 'never' | 'when-maximised'
387
- #
388
- # Deprecated: Configure this with `Log menu -> Show git graph` (<c-l> in the commits window by default).
389
- showGraph : always
390
-
391
367
# displays the whole git graph by default in the commits view (equivalent to passing the `--all` argument to `git log`)
392
368
showWholeGraph : false
393
369
449
425
# Command for opening a link. Should contain "{{link}}".
450
426
openLink : " "
451
427
452
- # EditCommand is the command for editing a file.
453
- # Deprecated: use Edit instead. Note that semantics are different:
454
- # EditCommand is just the command itself, whereas Edit contains a
455
- # "{{filename}}" variable.
456
- editCommand : " "
457
-
458
- # EditCommandTemplate is the command template for editing a file
459
- # Deprecated: use EditAtLine instead.
460
- editCommandTemplate : " "
461
-
462
- # OpenCommand is the command for opening a file
463
- # Deprecated: use Open instead.
464
- openCommand : " "
465
-
466
- # OpenLinkCommand is the command for opening a link
467
- # Deprecated: use OpenLink instead.
468
- openLinkCommand : " "
469
-
470
428
# CopyToClipboardCmd is the command for copying to clipboard.
471
429
# See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#custom-command-for-copying-to-and-pasting-from-clipboard
472
430
copyToClipboardCmd : " "
0 commit comments