config-files/lua/plugins/treesitter.lua

13 lines
429 B
Lua
Raw Permalink Normal View History

2025-11-30 02:06:38 -08:00
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,
}