nixvim-for-share/config/plugins/lsp/servers/rust_analyzer.nix
2025-07-26 12:43:01 +00:00

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;
};
};
};
};
}