Glint V2 LSP Configuration for Neovim
I have already migrated from V1 to V2 and the Glint V2 plugin for VSCode works nice, however when I'm trying to implement it to other editors like neovim or helix the LSP doesn't respond. There are no LSP Definitions, no Hovers, no Auto-completion, nothing.
The LSP setup for neovim I'm using is simply:
```lua
cmd = { "glint-language-server", "--stdio" },
init_options = {
glint = {
useGlobal = true,
},
},
```
For helix:
```toml
[language-server.ember-language-server]
command = "glint-language-server"
args = ["--stdio"]
```
I noticed that the VSCode plugin uses the NodeIPC instead, so perhaps the stdio isn't working as expected? Thanks.
关闭于 2026-01-31 2 条评论