i have line highlighting set in my .vimrc:
if v:version > 700
set cursorline
hi CursorLine ctermbg = Red guibg = #F5FBF6
endif
and line numbers on. Background and foreground of line numbers is set to:
highlight LineNr term=bold cterm=NONE ctermfg=DarkGrey ctermbg=NONE gui=NONE guifg=Black guibg=#589A5D
Current line is correctly highlighted but fore/back color of line number (this on the left side of editor) is the same. How can i change color of line numbers?
Cheers, jbk