Tags: #vim #highlight #line
" Note: this can be quite noisy, where as just looking at line number highlighted can be sufficient enough
fun! SetCursorLine()
" http://misc.flogisoft.com/_media/bash/colors_format/256_colors_bg.png
highlight CursorLine cterm=NONE ctermbg=214 ctermfg=darkred
endfun
" autocmd VimEnter * call SetCursorLine() " We have to use a last minute event (VimEnter)
" Otherwise the colourscheme overrides our CursorLine