Files
hyprduma-config/nvim/lua/plugins/treesitter.lua
T

13 lines
317 B
Lua
Raw Normal View History

2025-11-15 21:21:50 +04:00
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local config = require("nvim-treesitter.configs")
config.setup({
auto_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end,
2025-11-15 21:21:50 +04:00
}