Git で lazygit を設定するにはどうすればいいですか?

Git で lazygit を設定するにはどうすればいいですか?

lazygit アプリケーションは、簡単に使用できる Git クライアントです。

ファイルがあります.gitconfig:

[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

そして、私は~/.config/lazygit/config.ymlファイルを持っています:

git:
  showIcons: true
  paging:
    useConfig: true

しかし、この設定は無視されているように感じます。

答え1

これは正しい形式です

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

詳細はドキュメント

関連情報