1

我正在尝试使用 Vundle 安装 vim-scala 和 vim-sensible 插件。我按照这里的指示:https ://github.com/gmarik/Vundle.vim

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

在我的~/.vimrc我有:

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,输入

:PluginInstall

并且我的插件显示已成功安装。但是,当我再次打开 Vim 时,没有任何变化。

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

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

4

1 回答 1

1

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

于 2014-10-27T22:04:18.060 回答