Files
nvim/lua/plugins/treesitter.lua
2026-03-29 20:12:58 +01:00

15 lines
352 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
branch = "master",
lazy = false,
build = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup({
ensure_installed = { "lua", "python", "javascript", "typescript", "html", "css" },
highlight = { enable = true },
indent = { enable = true },
})
end,
}