dotfiles/.config/nvim/lua/plugins/nvim-treesitter.lua
Ahmet Kaan Gümüş e8bfb35161 feat: add new dotfiles
2025-02-22 23:29:01 +03:00

11 lines
237 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup({
auto_install = true,
highlight = { enabled = true },
indent = { enabled = true },
})
end,
}