From 2cb89d69528feef8e0ee57ce5a3f39b9c212cbe8 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Mon, 12 Feb 2024 12:03:37 +0300 Subject: [PATCH] Add Nushell LSP --- modules/helix.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/helix.nix b/modules/helix.nix index dcc071c..7d3910f 100644 --- a/modules/helix.nix +++ b/modules/helix.nix @@ -96,6 +96,11 @@ formatter = denoFormatter "tsx"; language-servers = [ "deno" ]; } + + { # TODO: Remove in the next Helix release. + name = "nu"; + language-servers = [ "nu" ]; + } ]; languages.language-server = { @@ -122,6 +127,11 @@ }; }; + nu = { # TODO: Remove in the next Helix release. + command = "nu"; + args = [ "--lsp" ]; + }; + rust-analyzer.config.check.command = "clippy"; };