As an alternative to the other solutions, you can add the path where the builtin parsers are located to the runtimepath (rtp). In my case /usr/lib/nvim
:
require("lazy").setup({
...
performance = { rtp = { paths = { "/usr/lib/nvim" } } },
...
})