我正在尝试使用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上运行。