Some useful VIM configurations, commands
Highlight extra tabs and spaces:
cat ~/.vimrc
highlight RedundantWhitespace ctermbg=red guibg=red
match RedundantWhitespace /\s\+$\|\t/
### If file is absent - create it
Disable auto indentation during paste:
:set paste (to disable paste mode use ":set nopaste")