" Enable syntax highlighting syntax on " Enable line numbers set number " Enable desert theme colorscheme desert " Always show status line set laststatus=2 " Highlight unwanted spaces : " 1. highlight trailing whitespace in red " 2. have this highlighting not appear whilst you are typing in insert mode " 3. have the highlighting of whitespace apply when you open new buffers highlight ExtraWhitespace ctermbg=red guibg=red match ExtraWhitespace /\s\+$/ autocmd BufWinEnter * match ExtraWhitespace /\s\+$/ autocmd InsertEnter * match ExtraWhitespace /\s\+\%#\@