7
Using and setting up Neovim in Windows 11 (not WSL)
(programming.dev)
When setting up nvim-treesitter neither clang nor msvc worked. Rather, it worked and compiled the necessary libs but the treesitter plugin failed to load the necessary .so libs. The common troubleshooting steps didn't help (setting up clang as preferred compiler etc.), so I just ended up installing zig and that helped to get it working.
I remember having this issue about an year ago. If I remember correctly I changed the clang from 32-bit to 64-bit binary. I just installed 64-bit version of clang using scoop, which for some reason installed the 32-bit version by default. It worked that way no problem.
Yup, zig was the way to go when I did it too.