vantreeseba / tree-sitter-haxe

MIT License
26 stars 11 forks source link

Missing highlighting #38

Closed kralle333 closed 6 months ago

kralle333 commented 6 months ago

Hi I am trying get highlighting working for my haxe projects, but not really sure what I am doing wrong.

image

Thanks!

kralle333 commented 6 months ago

Managed to fix it using:

require'nvim-treesitter.configs'.setup {
  ensure_installed = { "haxe" }, -- Install the Haxe parser
  highlight = {
    enable = true,              -- false will disable the whole extension
    additional_vim_regex_highlighting = false,
  },
}