Add Java to Treesitter

pull/93/head
Lorenzo Bettini 2024-09-27 19:48:21 +02:00
parent 3c6a0f3217
commit 491a9c630b
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
return {
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
-- add parsers, without replacing the default ones
vim.list_extend(opts.ensure_installed, {
"java",
})
end,
}