From: Frede Braendstrup Date: Sun, 31 Oct 2021 20:07:36 +0000 (+0100) Subject: Added mention of termguicolors in README X-Git-Url: https://git.atheridis.org/?a=commitdiff_plain;h=23a8c95dc45b0d57bb4998dae50507375b0f7422;p=nvim-plugins%2Fflatwhite.git 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 --- 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 ```