11 lines
219 B
Lua
11 lines
219 B
Lua
return {
|
|
'nvim-treesitter/nvim-treesitter',
|
|
build = ':TSUpdate',
|
|
config = function()
|
|
vim.api.nvim_create_autocmd('FileType', {
|
|
pattern = { 'c' },
|
|
callback = function() vim.treesitter.start() end,
|
|
})
|
|
end
|
|
}
|