dotfiles/.config/nvim/lua/plugins/treesitter.lua
2023-04-12 12:47:51 +02:00

27 lines
521 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
opts.ignore_install = { "help" }
if type(opts.ensure_installed) == "table" then
vim.list_extend(opts.ensure_installed, {
"bash",
"html",
"javascript",
"json",
"lua",
"markdown",
"markdown_inline",
"python",
"query",
"regex",
"tsx",
"typescript",
"vim",
"yaml",
"elixir",
"rust",
})
end
end,
}