Neovim中NERDTree等多處cursorline不高亮

zhuxiaoxi發表於2019-03-24

標題表達的不是很清楚,看下圖把
Neovim中NERDTree等多處cursorline不高亮

解決方法

新增下面內容到init.vim

" 針對NERDTree
" https://github.com/scrooloose/nerdtree/issues/953#issuecomment-465148857
autocmd ColorScheme * highlight NERDTreeFile ctermfg=251

" 針對普通視窗
" https://github.com/neovim/neovim/issues/9019#issuecomment-446514216
autocmd ColorScheme * highlight Normal ctermbg=NONE

根本原因

這是Neovim的一個Bug被發現於2018年9月,由於優先順序很低,至今未修復。
(假如您看到這篇文章時該問題已被修復,請及時聯絡我,幫助我標記文章狀態為過期)

相關文章