Как изменить схему раскраски Gdiff в vim-fugitive плагине?
Я использую плагин vim-fugitive, чтобы проверить git diff. Схема раскраски для подсветки изменений кода не дополняет мой соляризованный фон. Я не могу видеть команды для изменения схемы окраски Gdif. Может ли кто-нибудь помочь мне изменить схему окраски?
1 ответ
От :help :diffupdate
:
|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.
Так, например, что-то вроде
:highlight DiffAdd ctermfg=253 ctermbg=237 guifg=#dadada guibg=#3a3a3a
в вашей цветовой схеме следует изменить цвет добавляемых линий.