Use cterm colors instead of gui colors
One advantage of of the original base16 is that it's possible to use with terminals that don't support true color (for example mosh). This implementation enables termguicolors, which breaks mosh. Is there a hard dependency on termgui or can the theme use ctermfg/bg instead?
cterm is not implemented and I don't have plans on implementing. I'm open to PRs which add it and I'll review.
Hey, this breaks colors if using base16-shell from tinted-theming
with this commit:
the commit before this one (3c6a56016cea7b892f1d5b9b5b4388c0f71985be):
or am I missing something here?
Try adding set termguicolors in your init file.
oh, thanks @RRethy, that fixed it for me! (used vim.o.termguicolors=true on lua for anyone wondering about that)
For lua, you should use vim.opt.termguicolors=true. As a general rule of thumb, vim.opt is preferred in init files.