21 lines
282 B
Lua
21 lines
282 B
Lua
-- Customize Treesitter
|
|
|
|
---@type LazySpec
|
|
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = {
|
|
ensure_installed = {
|
|
"lua",
|
|
"vim",
|
|
"rust",
|
|
"yaml",
|
|
"toml",
|
|
"json",
|
|
"c",
|
|
"javascript",
|
|
"java",
|
|
"python",
|
|
},
|
|
},
|
|
}
|