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

자세한 내용은 다음에서 확인할 수 있습니다.문서.

관련 정보