내 터미널(kitty)과 vim은 모두 base16 색 구성표를 사용합니다. 그러나 kitty의 색 구성표를 변경하면 vim의 색 구성표도 비슷한 색 구성표로 변경됩니다.
내 관련 부분은 .vimrc
다음과 같습니다.
set background=dark
let base16colorspace=256
colorscheme base16-default-dark
syntax enable
색상 구성표를 설정했음에도 불구하고 vim은 여전히 kitty의 구성표를 사용합니다... 이 두 가지 구성표가 별도로 있었으면 좋겠습니다.
답변1
말한 바와 같이 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
도움이 되었기를 바랍니다!