Pathogen does not load plugins

前端 未结 19 1999
醉梦人生
醉梦人生 2020-12-02 11:02

Pathogen does not work for me. I am following Adam Lowe\'s hints posted here (and few more) without any success...

My vimrc:

filetype off
call pathogen         


        
19条回答
  •  再見小時候
    2020-12-02 11:38

    This seems to be common problem caused by the "system" vimrc in some distributions setting filetype on before you set up pathogen. So turning it off and back on again forces plugins to load correctly:

     call pathogen#runtime_append_all_bundles()
     filetype off
     syntax on
     filetype plugin indent on
    

    More info here.

提交回复
热议问题