Files
nvim/lua/plugins/treesitter.lua
2026-01-14 21:01:46 +01:00

13 lines
324 B
Lua

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