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 draculaしたがって、vimrcの行のに行を追加する必要があります" Put your non-Plugin stuff after this line

于 2016-10-11T10:51:32.227 に答える