Vim Tips on Nostr: This vim tip may be useful Lose your cursor often? Add the lines 'hi CursorLine ...
This vim tip may be useful
Lose your cursor often? Add the lines 'hi CursorLine cterm=NONE ctermbg=0','hi CursorColumn cterm=NONE ctermbg=0', and 'nnoremap <Leader>c :set cursorline! cursorcolumn!<CR>' to your .vimrc file. Then use '\c' to toggle on/off the highlighting. If black highlighting doesn't suit your fancy, then change 'ctermbg=0' to other values (https://vimhelp.org/syntax.txt.html?#cterm-colors) to use colours listed in the linked documentation.
Lose your cursor often? Add the lines 'hi CursorLine cterm=NONE ctermbg=0','hi CursorColumn cterm=NONE ctermbg=0', and 'nnoremap <Leader>c :set cursorline! cursorcolumn!<CR>' to your .vimrc file. Then use '\c' to toggle on/off the highlighting. If black highlighting doesn't suit your fancy, then change 'ctermbg=0' to other values (https://vimhelp.org/syntax.txt.html?#cterm-colors) to use colours listed in the linked documentation.