Open jonathandw743 opened 8 months ago
I've also checked this with echoing some text in ANSI codes and 31 gives cyan and 36 gives red
I've been facing the same issue. After going through few issues of nvim-treesitter repo, apparently the @constructor
group seems to have a higher priority leading to the overriding of the colors nvim-treesitter/2207.
One hot-fix as of now is to redefine the group in your highlights.lua
file. Something like this:
M.override = {
-- Other overrides
["@constructor"] = {
fg = "blue" -- Change color to your liking
}
}
Furthermore, I've only noticed this in the Lua language. Other languages like C++, Python don't seem to have this issue.
Describe the bug When I use the decay theme, the red and cyan colours in the emulated terminal are swapped
To Reproduce Steps to reproduce the behavior: 1.clone nvchad
Screenshots My terminal outside of neovim: In one dark: In decay before saving and exiting (before the changes have full taken effect): In decay after saving and exiting (so the changes have taken effect):
Desktop (please complete the following information):