13 lines
321 B
Lua
13 lines
321 B
Lua
return {
|
|
'nvim-treesitter/nvim-treesitter',
|
|
config = function()
|
|
require("nvim-treesitter.configs").setup({
|
|
ensure_installed = "all",
|
|
auto_install = true,
|
|
sync_install = false,
|
|
highlight = {
|
|
enable = true,
|
|
},
|
|
})
|
|
end
|
|
}
|