William Boman

Results 257 comments of William Boman

Hello! Hm, out of interest what other errors do you get if you set the `CURL_CA_BUNDLE`? I wouldn't mind adding a setting for curl similar to `pip` to allow injecting...

> Python's language server pyright can be installed using pip or npm. I didn't know pyright could be installed through pip. Will look into switching as it definitely makes more...

Hello! Support for Android rely heavily on what precompiled assets are available. It is extremely uncommon to provide assets for Android systems, so unfortunately packages that make use of precompiled...

Hello! There are some other packages that have similar dynamics with extensions. For now I'm leaning towards making these available by introducing sub-packages that rely on a parent package to...

Yeah the nvim-metals plugin provides a `:MetalsInstall` command. I believe it's only available via Coursier, for which support would need to be added from scratch in Mason (similar to [npm](https://github.com/williamboman/mason.nvim/blob/7ff829a329483a5dc4f86c7b9d1e5346e7a715da/lua/mason-core/managers/npm/init.lua)...

Hello! From the call stack in the error message it doesn't seem like you're running vue-language-server via Mason, but instead via `fnm`. The checkhealth output also suggests you're not even...

The error log suggests you're running an non-Mason installation of the language server. Also, do you use mason-lspconfig? Without mason-lspconfig you'll have to configure the fallback typescript resolution yourself.

Hey! It seems like the language server is only available via [`raco`](https://docs.racket-lang.org/raco/), for which support would need to be added from scratch in Mason (similar to [npm](https://github.com/williamboman/mason.nvim/blob/7ff829a329483a5dc4f86c7b9d1e5346e7a715da/lua/mason-core/managers/npm/init.lua) for example). There...

We can always override the cmd in mason-lspconfig should it be needed. Additionally we could even write a wrapper executable called `racket-langserver` which calls `racket --lib "/mason/packages/racket-langserver"`

Hello! Yes this has been on my mind as well. I think a `mason-dap` plugin (to bridge with `nvim-dap`) has an even greater need due to how configuration-heavy it is....