AstroNvim/lua/plugins/treesitter.lua
2025-01-29 14:47:04 -07:00

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",
},
},
}