Dup Ver Goto 📝

ModeDependentBackground

PT2/editor/vim/styles does not exist
To
15 lines, 48 words, 465 chars Page 'ModeDependentBackground' does not exist.

This makes the numbers go red when inserting, and blue when not.

function JdaInsertEnter()
  highlight LineNr ctermfg=yellow ctermbg=darkred
  highlight CursorLineNr ctermfg=black ctermbg=red
endfunction
function JdaInsertLeave()
  highlight LineNr ctermfg=yellow ctermbg=darkblue
  highlight CursorLineNr ctermfg=black ctermbg=blue
endfunction
call JdaInsertLeave()

autocmd InsertEnter * :call JdaInsertEnter()
autocmd InsertLeave * :call JdaInsertLeave()