From 23a8c95dc45b0d57bb4998dae50507375b0f7422 Mon Sep 17 00:00:00 2001 From: Frede Braendstrup Date: Sun, 31 Oct 2021 21:07:36 +0100 Subject: [PATCH] Added mention of termguicolors in README I've been trying to make this work for a couple of hours looking through other folks configs who also use it, and it would never have occured to me that this would be the fix for the it showing no colors --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index d974b86..3664f4a 100644 --- a/README.md +++ b/README.md @@ -36,11 +36,13 @@ Plug 'Mofiqul/dracula.nvim' ```lua -- Lua: +vim.o.termguicolors = true vim.cmd[[colorscheme dracula]] ``` ```vim " Vim-Script: +let g:termguicolors = true colorscheme dracula ``` -- 2.30.2