【发布时间】:2016-10-07 19:15:44
【问题描述】:
这是我的.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。不幸的是没有应用主题并且样式保持不变?有什么线索吗?
【问题讨论】:
-
添加到
.vimrc:syntax on和colorscheme dracula。