Files
nvim/lua/plugins/treesitter.lua
2025-11-04 11:44:29 +01:00

38 lines
735 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
event = { "BufReadPost", "BufNewFile" },
config = function()
require("nvim-treesitter.configs").setup({
ensure_installed = {
"lua",
"vim",
"vimdoc",
"hyprlang",
"nginx",
"yaml",
"bash",
"toml",
"regex",
"comment",
"json",
"html",
"xml",
"css",
"javascript",
"typescript",
"tsx",
"markdown",
"markdown_inline",
"sql",
"graphql",
"go",
"rust",
},
auto_install = true,
highlight = { enable = true},
indent = { enable = true},
})
end,
}