Files
dotfiles/nvim/lua/plugins/treesitter.lua

11 lines
219 B
Lua
Raw Normal View History

2026-01-17 21:17:29 +00:00
return {
'nvim-treesitter/nvim-treesitter',
build = ':TSUpdate',
config = function()
vim.api.nvim_create_autocmd('FileType', {
pattern = { 'c' },
callback = function() vim.treesitter.start() end,
})
2026-01-17 21:17:29 +00:00
end
}