Add Java to Treesitter

This commit is contained in:
Lorenzo Bettini 2024-09-27 19:48:21 +02:00
parent 3c6a0f3217
commit 491a9c630b

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,
}