If your linux distribution comes with a "normal" vi editor (this means, whithout colored interface and reading), you can "upgrade" your vi with a more readable interface. Some versions before, after Vim5, vim supports syntax highlighting by default, but if it is not enabled, you can modify your .vimrc and add next lines:
syntax on
If using a dark background within the editing area and syntax highlighting
turn on this option as well
set background=dark
And to have a jump to the last position Read more...