" Change color schemes " Type :color then ctr+d to list all available color schemes color ron " Turn on line numbers set number " Set default ruler at column 80 set colorcolumn=80 highlight ColorColumn ctermbg=4 " Set tabs to be equivalent to 4 spaces set tabstop=4 " Set up make file integration " Use :copen to view makefile output and :cclose to close map :make " Enable man page plugin, do :Man runtime ftplugin/man.vim " Sets up highlighting for trailing whitespace " These commands should be last because otherwise weird things happen highlight ExtraWhitespace ctermbg=red guibg=red match ExtraWhitespace /\s\+$/ autocmd BufWinEnter * match ExtraWhitespace /\s\+$/ autocmd InsertEnter * match ExtraWhitespace /\s\+\%#\@