Vundle不加载插件

时间:2016-10-07 19:15:44

标签: vim themes vundle

这是位于var $myModalInputs = $myModal.find(".form-control"); alert($myModalInputs.eq(4).attr("data-control-number")); 下的.vimrc。我已经安装了Vundle。

$HOME/.vimrc

我能够执行set nocompatible " be iMproved, required filetype off " required " set the runtime path to include Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " let Vundle manage Vundle, required Plugin 'VundleVim/Vundle.vim' Plugin 'dracula/dracula-theme' call vundle#end() " required filetype plugin indent on " required " Put your non-Plugin stuff after this line 成功安装:PluginInstall。不幸的是主题没有应用,风格保持不变?有线索吗?

1 个答案:

答案 0 :(得分:0)

Plugin 'dracula/dracula-theme'添加到您的vimrc并使用:PluginInstall使色标可供Vim使用,但它不会对Vim说使用它。

正如@dNitro在评论中所说,您必须使用命令colorscheme来设置所需的colorscheme。因此,您需要在行colorscheme dracula之后向您的vimrc 添加一行" Put your non-Plugin stuff after this line