0

这是我.vimrc位于下$HOME/.vimrc。我已经安装了 Vundle。

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成功执行安装dracula-theme。不幸的是没有应用主题并且样式保持不变?有什么线索吗?

4

1 回答 1

0

添加Plugin 'dracula/dracula-theme'到您的 vimrc 并使用:PluginInstall 使颜色方案对 Vim 可用,但它并没有告诉 Vim 使用它。

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

于 2016-10-11T10:51:32.227 回答