我的Vim插件(与Vundle一起安装)未加载

My Vim plugins (installed with Vundle) aren’t loading

我正在尝试使用Vundle安装vim-scala和vim敏感插件。 我遵循了这里的指示:https://github.com/gmarik/Vundle.vim

在我的~/.vim目录中,有一个名为'bundle'的文件夹,其中包含我从教程中下载的Vundle.vim目录。

在我的~/.vimrc中,我有:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
set nocompatible
filetype off
" set the runtime path to include Vundle and initialize

set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins

"call vundle#begin('~/some/path/here')


" let Vundle manage Vundle, required

Plugin 'gmarik/Vundle.vim'

Plugin 'tpope/vim-sensible'
Plugin 'derekwyatt/vim-scala'

" All of your Plugins must be added before the following line

call vundle#end()           " required
filetype plugin indent on   " required

然后我打开Vim,输入

1
:PluginInstall

并且我的插件显示已成功安装。 但是,当我再次打开Vim时,什么都没有改变。

编辑:我应该注意,我在使用病原菌时遇到了同样的问题,所以我不认为这是Vundle中的错误。

编辑:我的.vim.vimrc/root/.vim中; 我在Linux上运行。


据问问者杰弗里,他解决了他的问题。 他的插件正在加载中,但是他只是没有意识到,因为插件没有更改任何明显的可见Vim设置。