这是我.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
。不幸的是没有应用主题并且样式保持不变?有什么线索吗?