Wie konfiguriere ich Lazygit mit Git?

Wie konfiguriere ich Lazygit mit Git?

Die Lazygit-Anwendung ist ein Git-Client, der einfach zu verwenden sein soll.

Ich habe eine .gitconfigDatei:

[user]
  email = [email protected]
  name = Stephane Eybert
[alias]
  ss = status
  ap = add -p
  co = checkout
  unadd = reset
[core]
  pager = delta
  whitespace = cr-at-eol
  editor = vim
[filter "lfs"]
  process = git-lfs filter-process
  required = true
  clean = git-lfs clean -- %f
  smudge = git-lfs smudge -- %f
[merge]
  conflictStyle = diff3
  tool = meld
[push]
  ff = only
[fetch]
  prune = true
[diff]
  color = true
  tool = vimdiff
[color]
  diff = auto
  status = always
  branch = auto
[delta]
  side-by-side = true
  line-numbers = true
  navigate = true
  light = true

Und ich habe eine ~/.config/lazygit/config.ymlDatei:

git:
  showIcons: true
  paging:
    useConfig: true

Aber es fühlt sich an, als würde diese Konfiguration ignoriert.

Antwort1

Dies ist das richtige Format

gui:
  showIcons: true
git:
  paging:
    useConfig: true

Weitere Informationen finden Sie imDokumente.

verwandte Informationen