I'm using Treesitter with Neovim v0.8.2 and Python. With a default configuration of those 3, python docstrings are highlighted as strings, and I'd like to highlight them as comments.
I've tried creating a ~/.config/nvim/after/syntax/python.vim file with
syn region Comment start=/"""/ end=/"""/
and I expected """<things here>""" to be highlighted as comments.
I'm guessing this is because treesitter is disabling syntax highlighting, so on that note has anyone been able to add custom highlighting rules to Treesitter or after it?