nvim-config11/lua/plugins/treesitter.lua

34 lines
810 B
Lua
Raw Normal View History

2025-03-27 08:18:20 +00:00
return {
'nvim-treesitter/nvim-treesitter',
run = ':TSUpdate',
2025-03-27 08:18:20 +00:00
config = function()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = {
"c",
"lua",
"vim",
"vimdoc",
"query",
"elixir",
"heex",
"javascript",
"html",
"markdown",
"markdown_inline",
"html",
"jsdoc",
"hurl",
2025-03-27 12:48:32 +00:00
"typescript",
"json"
2025-03-27 08:18:20 +00:00
},
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
auto_install = true,
})
end
}