mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
plugins/lsp/astro: fix package attribute path
This commit is contained in:
parent
988906f8ed
commit
f13bdef0bc
1 changed files with 4 additions and 1 deletions
|
@ -28,7 +28,10 @@ let
|
|||
{
|
||||
name = "astro";
|
||||
description = "astrols for Astro";
|
||||
package = pkgs.nodePackages."@astrojs/language-server";
|
||||
package =
|
||||
pkgs.astro-language-server
|
||||
# TODO remove the following line when https://github.com/NixOS/nixpkgs/pull/333736 reaches nixos-unstable
|
||||
or pkgs.nodePackages."@astrojs/language-server";
|
||||
cmd = cfg: [
|
||||
"${cfg.package}/bin/astro-ls"
|
||||
"--stdio"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue