vim-fugitive 플러그인에서 Gdiff의 색 구성표를 변경하는 방법은 무엇입니까?

vim-fugitive 플러그인에서 Gdiff의 색 구성표를 변경하는 방법은 무엇입니까?

vim-fugitive 플러그인을 사용하여 git diff를 확인합니다. 코드 변경 사항을 강조하는 색 구성표가 내 일광 배경과 일치하지 않습니다. Gdif 색 구성표를 변경하는 명령을 볼 수 없습니다. 색 구성표를 변경하는 데 도움을 줄 수 있는 사람이 있나요?

답변1

일부 탐험에서:h diff

|hl-DiffAdd|    DiffAdd     Added (inserted) lines.  These lines exist in
                this buffer but not in another.
|hl-DiffChange| DiffChange  Changed lines.
|hl-DiffText|   DiffText    Changed text inside a Changed line.  Vim
                finds the first character that is different,
                and the last character that is different
                (searching from the end of the line).  The
                text in between is highlighted.  This means
                that parts in the middle that are still the
                same are highlighted anyway.  Only "iwhite" of
                'diffopt' is used here.
|hl-DiffDelete| DiffDelete  Deleted lines.  Also called filler lines,
                because they don't really exist in this
                buffer.

그런 다음 각 하이라이트 그룹을 원하는 색상으로 설정해야 합니다.

hi DiffAdd gui=NONE guifg=green guibg=black

바라보다onedak.vim그리고부드러운 정력더 많은 예시를 알아보세요.

관련 정보