From 90e19c5f51fdf6aacaf2cb2bf9966d5fd8d889c2 Mon Sep 17 00:00:00 2001 From: DamitusThyYeetus123 <108782125+DamitusThyYeetus123@users.noreply.github.com> Date: Wed, 4 Dec 2024 09:40:59 +1100 Subject: [PATCH 1/4] Update flake/develop.nix Co-authored-by: raf --- flake/develop.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flake/develop.nix b/flake/develop.nix index 78f41423..7b645288 100644 --- a/flake/develop.nix +++ b/flake/develop.nix @@ -18,8 +18,7 @@ # testing, but make sure to discard the changes before creating a pull # request. packages.dev = let - configuration = { - }; + configuration = {}; customNeovim = lib.nvim.neovimConfiguration { inherit pkgs; From 94cd554d9db9486fcc74e08bb15dc1ebf9ff85a2 Mon Sep 17 00:00:00 2001 From: DamitusThyYeetus123 <108782125+DamitusThyYeetus123@users.noreply.github.com> Date: Wed, 4 Dec 2024 09:41:05 +1100 Subject: [PATCH 2/4] Update configuration.nix Co-authored-by: raf --- configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 0921f193..723070a7 100644 --- a/configuration.nix +++ b/configuration.nix @@ -48,7 +48,7 @@ isMaximal: { # Assembly is not common, and the asm LSP is a major hit-or-miss assembly.enable = false; - astro.enable = isMaximal; + astro.enable = false; markdown.enable = isMaximal; html.enable = isMaximal; css.enable = isMaximal; From 872d01dcc417203c8232d88c9cdb50e4fc184ada Mon Sep 17 00:00:00 2001 From: DamitusThyYeetus123 <108782125+DamitusThyYeetus123@users.noreply.github.com> Date: Wed, 4 Dec 2024 09:51:58 +1100 Subject: [PATCH 3/4] Update astro.nix --- modules/plugins/languages/astro.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/plugins/languages/astro.nix b/modules/plugins/languages/astro.nix index 169838c4..9e70424b 100644 --- a/modules/plugins/languages/astro.nix +++ b/modules/plugins/languages/astro.nix @@ -98,7 +98,7 @@ in { package = mkOption { description = "Astro LSP server package, or the command to run as a list of strings"; - example = ''[lib.getExe pkgs.jdt-language-server "-data" "~/.cache/jdtls/workspace"]''; + example = ''[lib.getExe pkgs.astro-language-server "--minify" "--stdio"]''; type = either package (listOf str); default = servers.${cfg.lsp.server}.package; }; From 9426938a2dbb89e20714d6a4e64f19eaf1e6415d Mon Sep 17 00:00:00 2001 From: DamitusThyYeetus123 <108782125+DamitusThyYeetus123@users.noreply.github.com> Date: Wed, 4 Dec 2024 09:58:33 +1100 Subject: [PATCH 4/4] Update rl-0.7.md --- docs/release-notes/rl-0.7.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/release-notes/rl-0.7.md b/docs/release-notes/rl-0.7.md index 4b778a0f..6d6a83c5 100644 --- a/docs/release-notes/rl-0.7.md +++ b/docs/release-notes/rl-0.7.md @@ -383,3 +383,7 @@ The changes are, in no particular order: [Nowaaru](https://github.com/Nowaaru): - Add `precognition-nvim`. + +[DamitusThyYeeticus123](https://github.com/DamitusThyYeetus123): + +- Add support for [Astro](https://astro.build/) language server.