From 1babdc4cb051943ab8a9046abdc4d879e5694712 Mon Sep 17 00:00:00 2001 From: ncfavier Date: Sat, 20 May 2023 15:23:04 +0000 Subject: [PATCH] deploy: 27ef11f0218d9018ebb2948d40133df2b1de622d --- options.html | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/options.html b/options.html index f0831325e..b22cecf54 100644 --- a/options.html +++ b/options.html @@ -3131,12 +3131,19 @@ for a list of available options.

Type:$XDG_CONFIG_HOME/helix/languages.toml.

See https://docs.helix-editor.com/languages.html -for more information.

Type: list of (TOML value)

Default: [ ]

Example:

[
-  {
-    auto-format = false;
+for more information.

Type: (TOML value) or (list of (TOML value)) convertible to it

Default: { }

Example:

{
+  # the language-server option currently requires helix from the master branch at https://github.com/helix-editor/helix/
+  language-server.typescript-language-server = with pkgs.nodePackages; {
+    command = "${typescript-language-server}/bin/typescript-language-server";
+    args = [ "--stdio" "--tsserver-path=${typescript}/lib/node_modules/typescript/lib" ];
+  };
+
+  language = [{
     name = "rust";
-  }
-]

Declared by:

+ auto-format = false; + }]; +} +

Declared by:

<home-manager/modules/programs/helix.nix>
programs.helix.settings

Configuration written to $XDG_CONFIG_HOME/helix/config.toml.