mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +02:00
17 lines
411 B
Lua
17 lines
411 B
Lua
|
return {
|
||
|
{
|
||
|
"nvim-treesitter/nvim-treesitter",
|
||
|
build = ":TSUpdate",
|
||
|
event = "BufReadPost",
|
||
|
config = function()
|
||
|
require("nvim-treesitter.configs").setup({
|
||
|
sync_install = false,
|
||
|
auto_install = true,
|
||
|
highlight = { enable = true },
|
||
|
indent = { enable = true },
|
||
|
context_commentstring = { enable = true, enable_autocmd = false },
|
||
|
})
|
||
|
end,
|
||
|
},
|
||
|
}
|