-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to use 16-colours mode in Neovim? #71
Comments
If there is no way for NeoVim to determine the number of colors of the underlying terminal, I may reinstate the old option. But I'd like to understand: did they replace |
Using NeoVim v0.4.0 I get:
So, it seems like they made the setting read-only. And removed the documentation about it. |
I have played with Neovim a bit, and now things are clear to me: Neovim ignores I guess you want exact Solarized colors in terminals not supporting millions of colors. To achieve that in Neovim, I will need to reintroduce the old option, because Neovim always sets |
Thank you so much! |
Neovim ignores `&t_Co` and `&term`, so it is not possible in Neovim to use the ANSI colors when `termguicolors` is not set. Re-add this option to override the value of `s:t_Co`. Fixes lifepillar#71.
Hi, I see that recently Solarized 8 was updated so that the 16-colour mode is activated using
set t_Co=16
, rather thanlet g:solarized_use16 = 1
. However, Neovim does not supportt_*
settings. Is there anyway to use the 16-colour mode in Neovim?Thanks.
The text was updated successfully, but these errors were encountered: