From 67f9de2d0a68d3c790608c4deb38f4754de72339 Mon Sep 17 00:00:00 2001 From: Schweber <64630479+Schweber@users.noreply.github.com> Date: Tue, 1 Oct 2024 07:54:41 +0200 Subject: [PATCH] editor-setup: add instructions for helix --- nixd/docs/editor-setup.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/nixd/docs/editor-setup.md b/nixd/docs/editor-setup.md index 98a194884..8202b7b7f 100644 --- a/nixd/docs/editor-setup.md +++ b/nixd/docs/editor-setup.md @@ -110,6 +110,21 @@ A simple Emacs Lisp configuration that adds nixd to LSP Mode in the mean time is :server-id 'nixd))) ``` +### Helix + +`nixd` will be supported by default in the next release after 24.07. + +#### languages.toml + +```toml +[[language]] +name = "nix" +language-servers = ["nixd","nil"] + +[language-server.nixd] +command = "nixd" +``` + ## Change the configuration. Read the [configuration](configuration.md) docs here.