24 lines
496 B
Nix
24 lines
496 B
Nix
{
|
|
plugins.lsp.servers = {
|
|
rust_analyzer = {
|
|
enable = true;
|
|
installCargo = true;
|
|
installRustc = true;
|
|
settings = {
|
|
checkOnSave = true;
|
|
check = {
|
|
command = "clippy";
|
|
};
|
|
# inlayHints = {
|
|
# enable = true;
|
|
# showParameterNames = true;
|
|
# parameterHintsPrefix = "<- ";
|
|
# otherHintsPrefix = "=> ";
|
|
# };
|
|
procMacro = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|