カーソルの色を変更するための良いスニペットがあります:
if &term =~ "xterm\\|rxvt"
" use an orange cursor in insert mode
let &t_SI = "\<Esc>]12;orange\x7"
" use a red cursor otherwise
let &t_EI = "\<Esc>]12;red\x7"
silent !echo -ne "\033]12;red\007"
" reset cursor when vim exits
autocmd VimLeave * silent !echo -ne "\033]112\007"
" use \003]12;gray\007 for gnome-terminal
endif
カーソルの代わりに、CursorLine がたとえば濃い青から青に色を変えるように変更するにはどうすればよいですか?
私の完全な設定はhttps://bitbucket.org/JackLeo/home-configs/src/5b8faf340f87/.vimrcです