From 3eb0b9d525eb363f164b2fc4216964d6d60f0fef Mon Sep 17 00:00:00 2001 From: Damir Vandic Date: Fri, 25 Aug 2023 23:16:47 +0200 Subject: [PATCH] docs: update helix instructions for nightly (#203) --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index d67e3b8c..5e428640 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,19 @@ scope = "source.elixir" language-server = { command = "path/to/next-ls", args = ["--stdio=true"] } ``` +If you are using the latest git version of helix use this: + +```toml +[[language]] +name = "elixir" +scope = "source.elixir" +language-servers = ["nextls"] + +[language-server.nextls] +command = "path/to/next-ls" +args = ["--stdio=true"] +``` +