plugins/lsp/hls: handle automatic installation of required GHC

This commit is contained in:
Gaetan Lepage 2024-10-13 15:22:01 +02:00 committed by nix-infra-bot
parent 767eb62f48
commit 619e24366e
3 changed files with 43 additions and 3 deletions

View file

@ -16,9 +16,14 @@ let
plugins.lsp = {
enable = true;
servers.rust_analyzer = {
installCargo = true;
installRustc = true;
servers = {
hls = {
installGhc = true;
};
rust_analyzer = {
installCargo = true;
installRustc = true;
};
};
};
};