From 912547808b664f35a2765854fbd27f09ccb37cc9 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Sun, 20 Oct 2024 00:25:50 +0200 Subject: [PATCH] helix/languages.nix: add qml --- modules/programs/editors/helix/languages.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/programs/editors/helix/languages.nix b/modules/programs/editors/helix/languages.nix index d5bd891..a547f72 100644 --- a/modules/programs/editors/helix/languages.nix +++ b/modules/programs/editors/helix/languages.nix @@ -93,6 +93,10 @@ in { config.nil.formatting.command = ["${getExe pkgs.alejandra}" "-q"]; }; + qmlls = { + command = "${pkgs.kdePackages.full}/bin/qmlls"; + }; + pyright = { command = "${pkgs.pyright}/bin/pyright-langserver"; args = ["--stdio"];