My line numberings in Vim are blue (background) and white (foreground) but this is not very clearly especially for large files.
I would like to have every fifth line numbers background in darkblue and every tenth line numbers foreground in red, so that one can distinguish between 5 and 10 lines of code easily without counting or having to focus at the line numbering.
How can I make this happen? Unfortunately I did not find any plugin doing this..
You can use my DynamicSigns plugin. It defines a SignExpression command, that works similar to the foldexpression. In your case, you could simply do:
Advantage of using my plugin is, it takes care of adjusting the line numbers automatically, when you add or delete lines. Note: depending on the size of your file, this might slow down Vim. But this is a problem, many sign plugins have in common, since there is no VimL API for accessing signs.