" When joining lines only add one space after a sentence.
set nojoinspaces
-" Allow backspacing over autoindent, line breaks and insert mode starts.
-set backspace=indent,eol,start
+" Allow backspacing over autoindent and line breaks.
+set backspace=indent,eol
" Start a comment when hitting enter after a commented line (r) and when using
" o or O around a commented line (o).
" started.
set formatoptions+=l
+" Allow virtual editing (cursor can be positioned anywhere, even when there is
+" no character) in visual block mode.
+set virtualedit=block
+
" Already display matches while typing the search command. This makes spotting
" errors easily.
set incsearch