I am trying to highlight the current line as well as the cursor position in Vim. Here's my .vimrc:
set cursorline
hi CursorLine ctermbg=8 ctermfg=15 "8 = dark gray, 15 = white
hi Cursor ctermbg=15 ctermfg=8
The problem I'm experiencing is that the current line background color covers up the cursor background color, so it looks like this:

I can obviously tell where the cursor is because the foreground color is almost black, but when the cursor is on a space or at the beginning/end of a line I have no clue where it is unless I move it.

What am I doing wrong here?