MaxMEllon / vim-jsx-pretty

:flashlight: [Vim script] JSX and TSX syntax pretty highlighting for vim.
MIT License
969 stars 38 forks source link

Closing tag doesn't get colored - Gruvbox #149

Closed mustafaergul closed 3 years ago

mustafaergul commented 3 years ago

Currently using gruvbox as colorscheme and in JSX file closing tags are always greyed as below. I would expect better coloring for JSX files to pretty view and same colors for closing tags.

Could you please guide me on how to fix this? I do also have the following lines that didn't help;

highlight link xmlEndTag xmlTag

let g:vim_jsx_pretty_highlight_close_tag = 1

image

Thank you1 ❤️

rudotriton commented 3 years ago

It should color them by default, because I also use gruvbox. let g:vim_jsx_pretty_highlight_close_tag=1 means that the closing tag won't be colored. If you remove that line are they still not colored?

mustafaergul commented 3 years ago

That worked well, not sure why I have added this :) Thanks @rudotriton !