-
-
Notifications
You must be signed in to change notification settings - Fork 275
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
Not all colors are applied properly - kitty terminal #254
Comments
Hi @IronsideSec 👋 In order to ensure the problem is related to the Nord theme you need to reproduce it with a minimal and clean configuration. This can be done by creating new configuration file with any name (e.g. Here's an minimal test configuration you can use to try to reproduce the problem (supposed you're using 3): call plug#begin(expand('~/.vim/plugged'))
Plug 'arcticicestudio/nord-vim'
call plug#end()
set nocompatible
if (has("termguicolors"))
set termguicolors
endif
syntax enable
colorscheme nord As you can see in the example configuration I've added the It's also possible that you're using a terminal that doesn't work out-of-the-box with 24-bit colors so in order to use the Unfortunately terminal colors are quite complex due to their long history, but modern terminal emulators should be all capable of rendering "True Colors". You should make sure to check out the great “Terminal Colors“ gist that provides many details about color rendering in terminal emulators, tracking of supported terminal emulator projects and answers to common confusions about terminal colors. The “Colours in terminal“ gist is also quite helpful to learn more about the actual rendering engines and standards used by these terminal emulators. Could you please try to either use the example configuration or set the |
@IronsideSec Have you been able to solve the problem? If yes it would be nice if you could summarize your solution to help others who are facing the same problem. |
Closing this issue for now due to inactivity, but feel free to reply if you have time again or if there are still open problems. |
Hi! I am using kitty and manually applying colorscheme using Nord Xresources colors, but when applying vim nord not all colors are right - the most noticeable difference is the one comments are rendered with, and the selection. Attaching screenshot for reference. I tried applying alacritty colorscheme but it looked even worse in this combination.. Any way I can manually try to change this one color? Tried to switch it inside the nord.vim file but it never respected the changes..
The text was updated successfully, but these errors were encountered: