Closed mattjamesdev closed 2 years ago
Nice, this should be relatively easy to implement (and I’ll probably sort it out this weekend). Thanks for bringing this to my attention :)
Commit 2182bed in the dev
branch adds the suggested vim.opt.termguicolors = true
to the colorscheme. I decided to add it externally from the M.load
function in colors/tundra.lua
as I want M.load
to be specifically for applying or reloading highlight groups. I'll leave it a couple of days before merging to main
and closing the issue to check it works as intended :)
Awesome, thanks for looking into it!
Cherry picked commit (from 2182bed) e08d397 into main branch. Users don't need to set termguicolors
to true
in their Neovim configuration any longer :)
I noticed other colourscheme plugins set
termguicolors
within their plugin, whereas this one doesn't. This causes the colourscheme to not be applied properly iftermguicolors
is not set explicitly by the user elsewhere in their config.Setting the colourscheme on its own (everything is blank):
After entering
:set termguicolors
:Based on what I've seen in other colourschemes' "init.lua"s, I think it should be as simple as adding the line
vim.opt.termguicolors = true
somewhere in theM.load
function oflua/nvim-tundra/init.lua
.