return { -- treesitter is experimental and breaks indentation on xml, html with `=` -- treesitter is optional for orgmode, but without it syntax highlighting in -- org files is broken 'nvim-treesitter/nvim-treesitter', config = function() require'nvim-treesitter.configs'.setup { ensure_installed = {"c", "html", "css", "javascript", "org"}, sync_install = false, auto_install = true, ignore_install = {}, disable = { }, modules = { "all" }, highlight = { enable = true, } } end }