mirror of
https://github.com/Manoj-HV30/i3wm-ubuntu-dotfiles.git
synced 2026-05-16 19:35:23 +00:00
22 lines
365 B
Lua
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 },
|
|
},
|
|
}
|
|
|