Vim插件无法加载。

时间:2018-09-25 17:22:06

标签: vim vim-plugin pathogen

我有一个vim configuration on github,其中a single plugin作为子模块。

我将其设置在新的用户区域中,如下所示:

  561  git clone --recurse-submodules https://github.com/joereddington/dotvimdirectory/
  562  mv dotvimdirectory/ .vim
  563  ls .vim
  564  $ ln -s ~/.vim/vimrc ~/.vimrc
  565  ln -s ~/.vim/vimrc ~/.vimrc
  568  vim todo.txt 

但是检出的子模块没有给我任何映射:

(vim中:map的结果) enter image description here

尽管语法突出显示工作正常:

enter image description here

为什么不加载插件映射?

1 个答案:

答案 0 :(得分:2)

您没有在 .vimrc 中打开文件类型插件:

filetype plugin on

这是您的插件使用的。选中:h ftplugin:h add-filetype-plugin