Open
Conversation
Took me a second to nail down where to look to install this from NPM for helix, so added the link
lifeart
reviewed
Jun 30, 2025
| * VSCode: [Unstable Ember Language Server](https://github.com/lifeart/vscode-ember) | ||
| * Neo (Vim): [coc-ember](https://github.com/NullVoxPopuli/coc-ember), [native LSP integration](https://github.com/neovim/nvim-lspconfig/blob/master/CONFIG.md#ember) | ||
| * Emacs using [lsp-mode](https://github.com/emacs-lsp/lsp-mode) | ||
| * Helix: `npm install -g @ember-tooling/ember-language-server` |
Contributor
There was a problem hiding this comment.
Hi @TeriyakiBomb, thank you for contribution!
Do you mind to add more details here, pointing to official documentation?
Just installing LS as global dependency without additional configuration seems a-bit confusing.
Author
There was a problem hiding this comment.
Hey, that's just kind of how it works in helix 😅, most languages it supports out of the box just pick up the correct LSP and just start working without any configuration.
So the general workflow is to just install an lsp via npm, brew etc, run hx --health <lang> and in most cases it'll just work. There's optional configuration which I could attach?
So I could split it into those three steps, install, confirm, optional config?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Took me a second to nail down where to look to install this from NPM for helix, so added the link