1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-20 01:09:41 +01:00

modules/lsp/hls: port ghcPackage option from plugins.lsp

This commit is contained in:
Matt Sturgeon 2025-10-09 20:35:45 +01:00
parent cf6c8ef1fa
commit e868bd6aa1
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
3 changed files with 62 additions and 18 deletions

View file

@ -187,6 +187,7 @@
hls = {
enable = true;
packageFallback = true;
installGhc = true;
};
};
};
@ -219,6 +220,7 @@
assertPrefix "nil" nil_ls.package
++ assertSuffix "rust-analyzer" rust_analyzer.package
++ assertSuffix "haskell-language-server" hls.package
++ assertSuffix "ghc" hls.ghcPackage
);
};
}