call pathogen
not required at all: the function is deprecated and not at all useful.
If you really need to be safe, this is what you should have at the top of your ~/.vimrc :
" turn filetype detection off and, even if it not strictly " necessary, disable loading of indent scripts and filetype plugins filetype off filetype plugin indent off " pathogen runntime injection and help indexing call pathogen#infect() call pathogen#helptags() " turn filetype detection, indent scripts and filetype plugins on " and syntax highlighting too filetype plugin indent on syntax on
However, I had a pretty long time:
call pathogen#infect() call pathogen#helptags() filetype plugin indent on syntax on
source share