-
Notifications
You must be signed in to change notification settings - Fork 196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Helix Installation Instructions to README.md #1026
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,6 +92,27 @@ For `eglot`, use: | |
(add-to-list 'eglot-server-programs '(elixir-mode "path-to-elixir-ls/release/language_server.sh")) | ||
``` | ||
|
||
</details> | ||
<details> | ||
<summary>Helix Installation Instructions</summary> | ||
|
||
From : http://elixirforum.com/t/helix-editor-for-elixir-development/54964 | ||
|
||
Put the following configuration in .config/helix/languages.toml, and happy coding! | ||
|
||
```toml | ||
[[language]] | ||
name = "elixir" | ||
scope = "source.elixir" | ||
injection-regex = "elixir" | ||
file-types = ["ex", "exs"] | ||
roots = ["mix.exs"] | ||
auto-format = true | ||
diagnostic-severity = "Hint" | ||
comment-token = "#" | ||
indent = {tab-width = 2, unit = " "} | ||
language-server = {command = "elixir-ls"} | ||
``` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add some example config, basing on https://elixirforum.com/t/helix-editor-for-elixir-development/54964/24?u=lukaszsamson it's done like that
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure. I'll test it first and modify the PR once that's done. |
||
</details> | ||
|
||
## Supported Elixir and OTP versions | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add debug adapter as well. Judging from https://helix-editor.com/news/release-22-03-highlights/ it's supported
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, I don't have time to get this done now. Hope to get to it soon.