blob: f89ef8724fe617f3c999235510cd893bb7227bc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function ()
local ts = require("nvim-treesitter.configs")
ts.setup({
auto_install = true,
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end
}
|