hi all i use this color scheme

Cobalt Colour scheme : Vim version of TextMates Cobalt colour scheme

I can not see the cursor in insert mode

how i can change this color

EDIT:

I think this is cursor part

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

thanks

link|improve this question

67% accept rate
feedback

1 Answer

There is quite a lot of information about how to set the insert mode cursor color in the vim documentation

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

EDIT:

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.