Files
i3wm-ubuntu-dotfiles/.config/nvim/lua/plugins/treesitter.lua
T
2026-01-29 23:19:44 +05:30

22 lines
365 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
event = { "BufReadPost", "BufNewFile" },
build = function()
pcall(vim.cmd, "TSUpdate")
end,
opts = {
ensure_installed = {
"lua",
"python",
"c",
"cpp",
"bash",
"json",
"markdown",
},
highlight = { enable = true },
indent = { enable = true },
},
}