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

13 lines
317 B
Lua
Executable File

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,
}