我如何在配色方案中更改光标颜色"vim "

我如何在配色方案中更改光标颜色"vim "

问题描述:

大家好,我使用这个配色方案

hi all i use this color scheme

Cobalt 配色方案:TextMates Cobalt 配色方案的 Vim 版本

在插入模式下看不到光标

I can not see the cursor in insert mode

我如何改变这种颜色

我认为这是光标部分

hi CursorLine     guifg=none            guibg=#002943
hi Cursor         guifg=#F8F8F8           guibg=#A7A7A7
hi CursorIM       guifg=#F8F8F8           guibg=#002947"#5F5A60

谢谢

vim 文档

以下是链接文档中的示例:

Here is an example from the linked documentation:

highlight Cursor guifg=white guibg=black
highlight iCursor guifg=white guibg=steelblue
set guicursor=n-v-c:block-Cursor
set guicursor+=i:ver100-iCursor
set guicursor+=n-v-c:blinkon0
set guicursor+=i:blinkwait10

i 表示插入模式,v 视觉,c 命令,n 正常

The i means insert mode, v visual, c command, and n normal