From 6635334b06cdb0b64a6feb4effdf87a5ac2c5843 Mon Sep 17 00:00:00 2001 From: LordMZTE Date: Tue, 12 Nov 2024 08:37:01 +0100 Subject: [PATCH] update and temporarily disable ltex-ls for typst --- mzte-nv/conf/lua/pluginconf/p-lspconf.fnl | 2 +- nix/cgnix/nvim-tools/default.nix | 9 +++------ 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/mzte-nv/conf/lua/pluginconf/p-lspconf.fnl b/mzte-nv/conf/lua/pluginconf/p-lspconf.fnl index c32bb54..20a762b 100644 --- a/mzte-nv/conf/lua/pluginconf/p-lspconf.fnl +++ b/mzte-nv/conf/lua/pluginconf/p-lspconf.fnl @@ -43,7 +43,7 @@ (setup :html) (setup :jsonls {:on_attach disable-formatter}) (setup :ltex {:cmd [:ltex-ls-plus] - :filetypes [:typst + :filetypes [;:typst ;; TODO: enable when this issue is properly implemented: https://github.com/ltex-plus/ltex-ls-plus/issues/39 :bib :gitcommit :markdown diff --git a/nix/cgnix/nvim-tools/default.nix b/nix/cgnix/nvim-tools/default.nix index e93ff5c..e0b1cc4 100644 --- a/nix/cgnix/nvim-tools/default.nix +++ b/nix/cgnix/nvim-tools/default.nix @@ -24,16 +24,13 @@ let (flakePkg "git+https://git.mzte.de/LordMZTE/haxe-language-server.git") config.output.packages.jdtls-wrapped ( - let - commit = "2b60af"; - in pkgs.stdenvNoCC.mkDerivation rec { pname = "ltex-ls-plus"; - version = "18.3.0"; + version = "18.3.0-alpha.nightly.2024-11-12"; src = fetchurl { url = - "https://git.mzte.de/api/packages/LordMZTE/generic/ltex-ls-plus/${version}-${commit}-alpha/ltex-ls-plus-${version}-${commit}-alpha.tar.gz"; - sha256 = "sha256-xiEQXfJNaTW61p6/4hZWr2WhxzwJfZtb8I+hS+s6Ji0="; + "https://github.com/ltex-plus/ltex-ls-plus/releases/download/nightly/ltex-ls-plus-${version}.tar.gz"; + sha256 = "sha256-Ux982DGaI5GIEOSS4yqGQsxa8pKxXae8fxVEn+yEmgU="; }; preferLocalBuild = true;