Vim

終端(小貓)顏色改變 vim 配色方案

  • October 20, 2020

我的終端(kitty)和 vim 都使用 base16 配色方案。然而,改變 kitty 的配色方案會導致 vim 的配色方案變成類似的東西。

我的相關(我猜)部分.vimrc看起來像這樣:

set background=dark
let base16colorspace=256
colorscheme base16-default-dark
syntax enable

儘管設置了colorscheme,vim還是採用了kitty的方案……我想要兩者分開的方案。

正如kovidgoyal所說:

將以下內容添加到您的 .vimrc

   " vim hardcodes background color erase even if the terminfo file does
   " not contain bce (not to mention that libvte based terminals
   " incorrectly contain bce in their terminfo files). This causes
   " incorrect background rendering when using a color theme with a
   " background color.
   let &t_ut=''

來源- https://github.com/kovidgoyal/kitty/issues/108#issuecomment-320492663

希望能幫助到你!

引用自:https://unix.stackexchange.com/questions/516380