---@module 'lazy' ---@type LazySpec return { { 'nvim-treesitter/nvim-treesitter', -- highlight, edit, and navigate code build = ':TSUpdate', lazy = false, config = function() Autocmd('FileType', { pattern = require('nvim-treesitter').get_available(), callback = function(ft) require('nvim-treesitter').install(ft.match) pcall(vim.treesitter.start) end }) end, } }