mirror of https://github.com/LazyVim/starter
10 lines
203 B
Lua
10 lines
203 B
Lua
|
return {
|
||
|
"nvim-treesitter/nvim-treesitter",
|
||
|
opts = function(_, opts)
|
||
|
-- add parsers, without replacing the default ones
|
||
|
vim.list_extend(opts.ensure_installed, {
|
||
|
"java",
|
||
|
})
|
||
|
end,
|
||
|
}
|