projects
/
nvim-plugins
/
flatwhite.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
328e699
)
Added mention of termguicolors in README
author
Frede Braendstrup
<frederikbraendstrup@gmail.com>
Sun, 31 Oct 2021 20:07:36 +0000
(21:07 +0100)
committer
Frede Braendstrup
<frederikbraendstrup@gmail.com>
Sun, 31 Oct 2021 20:07:36 +0000
(21:07 +0100)
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
patch
|
blob
|
history
diff --git
a/README.md
b/README.md
index d974b86592d75e78e3279c4adea1dd77f3f256a5..3664f4a610cd10b26e1f4617196d8fd6b62d5532 100644
(file)
--- 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
```