" https://dev.launchpad.net/UltimateVimPythonSetup " Wrapping and tabs. set tw=78 ts=4 sw=4 sta et sts=4 ai " More syntax highlighting. let python_highlight_all = 1 " Auto completion via ctrl-space (instead of the nasty ctrl-x ctrl-o) set omnifunc=pythoncomplete#Complete inoremap " Wrap at 72 chars for comments. set formatoptions=cq textwidth=72 foldignore= wildignore+=*.py[co] " Highlight end of line whitespace. highlight WhitespaceEOL ctermbg=red guibg=red match WhitespaceEOL /\s\+$/