From b64b22affafca7d3831a20949115b91031d596ec Mon Sep 17 00:00:00 2001 From: Wang Shidong Date: Mon, 20 Jul 2020 05:08:21 +0800 Subject: [PATCH] Update guide for installing dracula in spacevim (#204) ref: https://github.com/dracula/vim/issues/190 --- INSTALL.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 74fbe5c..1d6670e 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -67,12 +67,14 @@ Place `colorscheme dracula` after `call plug#end()`. If you [use spacevim](https://spacevim.org), put the following in `~/.SpaceVim.d/init.toml`: -``` -[[custom_plugins]] - name = "dracula/vim" +```toml [options] colorscheme = "dracula" colorscheme_bg = "dark +[[custom_plugins]] + repo = "dracula/vim" + name = "dracula" + merged = false ``` ---