Color highlighting problem: FRONTEND
I want to say thank you right away, and maybe I'm not addressing it in the right place.
I'm using:
- nvim version 0.7.0
- This is my .vimrc
- macos
- iterm2
FRONTEND highlighting:
Variables
Expected: newVariable == variable_color
You can see in the picture that newVariable has a white color-like text.
Types
Expected: newType == type_color
You can see in the picture that newType has a white color-like text.
Key from Variable
Expected: nameOfVariable == variable_color, .variableName == key_color
These both have white in color. Should be one color for Var and second color for key
Destructuring
Expected: variableName == variable_color, .nameOfVariable == variable_color
You can see in the picture that variableName is key from nameOfVariable and these both have white color.
Renaming Destructuring
Expected: variableName == key_color, nameOfVariable == variable_color, newVariableName == variable_color
You can see in the picture that newVariableName has white color.

Function ES version
Expected: nameOfFunction == function_color
You can see in the picture that nameOfFunction is a function but it's just white color.
Calling function
Expected: nameOfFunction() == function_color
You can see in the picture that nameOfFunction() has white color.