config-files/lua/plugins/treesitter.lua
2025-11-30 02:06:38 -08:00

12 lines
429 B
Lua

return {
'nvim-treesitter/nvim-treesitter',
build = ':TSUpdate',
config = function()
require('nvim-treesitter.configs').setup({
ensure_installed = { "html", "markdown", "markdown_inline", "json", "yaml", "lua", "python",
"css", "javascript", "typescript", "bash", "vim", "go", "toml", "xml"}, -- add languages you use
highlight = { enable = true },
indent = { enable = true },
})
end,
}