mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-30 07:35:32 +02:00
plugins/lsp/hls: handle automatic installation of required GHC
This commit is contained in:
parent
767eb62f48
commit
619e24366e
3 changed files with 43 additions and 3 deletions
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue