1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-10 04:07:18 +02:00
lazygit/docs/Config.md
2018-09-01 14:35:46 +10:00

1.2 KiB

User Config:

Default:

  gui:
    # stuff relating to the UI
    scrollHeight: 2 # how many lines you scroll by
    theme:
      activeBorderColor:
        - white
        - bold
      inactiveBorderColor:
        - white
      optionsTextColor:
        - blue
  update:
    method: prompt # can be: prompt | background | never
    days: 14 # how often an update is checked for
  reporting: 'undetermined' # one of: 'on' | 'off' | 'undetermined'

Platform Defaults:

Windows:

  os:
    openCommand: 'cmd /c "start "" {{filename}}"'

Linux:

  os:
    openCommand: 'bash -c \"xdg-open {{filename}} &>/dev/null &\"'

OSX:

  os:
    openCommand: 'open {{filename}}'

for users of VSCode

  os:
    openCommand: 'code -r {{filename}}'

Color Attributes:

For color attributes you can choose an array of attributes (with max one color attribute) The available attributes are:

  • default
  • black
  • red
  • green
  • yellow
  • blue
  • magenta
  • cyan
  • white
  • bold
  • reverse # useful for high-contrast
  • underline

Example Coloring:

border example