-
-
Notifications
You must be signed in to change notification settings - Fork 170
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
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
Color for current line and visual blocks missing #207
Comments
Hi @welblaud, I need some more information regarding your setup (like mentioned in the issue template), otherwise there's no way trying to reproduce the problem:
Also, if you're using the |
Terminal: simple terminal st
|
@dagolinuxoid Thanks for testing and sharing your results, looks like both problems are related to Vim's color space again. @Benjamin-Lee @welblaud Could you please try to add the following option to your configuration? It looks like Vim uses the 256 color palette instead of the hexadecimal colors defined by Nord. if (has("termguicolors"))
set termguicolors
endif |
BTW unfortunately in some cases in order to enable true color support (make sure your terminal support it), using just " set Vim-specific sequences for RGB colors | enable true colors
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
set termguicolors |
I've got the same problem using Windows Terminal. Setting |
I'd add the lines to the install guide so people are aware of the issue |
Confirming that adding the |
It's documented in the readme that only true colours are supported. |
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
Despite I have set
cursoline
highlighting up, there is no visible color. The same with visual block selections. The only clue about what is being selected is thanks to vim-indentline chars disappearing. (In gVim it works perfectly.)At the moment, I have no idea how to run bare-bones Vim with the nord theme without broking my .vim directory.
This is what I get with both nord theme in terminal and in vim (besides the current line highlighting problem, it seems all colors are distorted a bit too):
The text was updated successfully, but these errors were encountered: