15 lines
241 B
Lua
15 lines
241 B
Lua
---@type LazySpec
|
|
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = {
|
|
ensure_installed = {
|
|
"lua",
|
|
"vim",
|
|
"javascript",
|
|
"go",
|
|
},
|
|
highlight = { enabled = true },
|
|
indent = { enabled = true },
|
|
},
|
|
}
|