挿入モードにすると、このスニペットがステータス ラインの色を変更することがわかりました。
" first, enable status line always
set laststatus=2
" now set it up to change the status line based on mode
if version >= 700
au InsertEnter * hi StatusLine term=reverse ctermbg=5 gui=undercurl guisp=Magenta
au InsertLeave * hi StatusLine term=reverse ctermfg=0 ctermbg=2 gui=bold,reverse
endif
さて、挿入モードにすると、ステータスラインが紫色になりますが、赤色に変更したいと思います。マゼンタをレッドに変えたのですがうまくいきません..