dotfiles/lazyvim/lua/plugins/plugins.lua

29 lines
451 B
Lua

return {
-- add more treesitter parsers
{
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = {
"bash",
"html",
"javascript",
"json",
"lua",
"markdown",
"markdown_inline",
"python",
"query",
"regex",
"tsx",
"typescript",
"vim",
"yaml",
},
},
},
{
"nvim-java/nvim-java",
opts = {},
},
}