2017-02-06 17 views
0

私はvim-fugitiveプラグインを使ってgit diffをチェックします。コードの変更を強調する配色は、私のソラリゼーションされた背景を補完するものではありません。私はGdifの色付けスキームを変更するコマンドを見ることができません。誰でも私に着色の仕組みを変えるのを手伝ってもらえますか? :help :diffupdateからvim-fugitiveプラグインでGdiffの配色を変更するにはどうすればよいですか?

答えて

2

|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 

ようなものが追加された線の色を変更する必要があります。

関連する問題