dotfiles/.config/nvim/lua/plugins/nvim-treesitter.lua

12 lines
237 B
Lua
Raw Normal View History

2025-02-22 23:29:01 +03:00
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup({
auto_install = true,
highlight = { enabled = true },
indent = { enabled = true },
})
end,
}