Files
nvim/lua/plugins/treesitter.lua
2026-03-16 15:04:16 +01:00

13 lines
332 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
lazy = false,
run = ":TSUpdate",
config = function()
require'nvim-treesitter'.install { 'lua', 'c', 'cpp', 'rust', 'java' }
vim.api.nvim_create_autocmd('FileType', {
pattern = { '<filetype>' },
callback = function() vim.treesitter.start() end,
})
end,
}