Files
nix-config/home/pc/common/programs/nvim/plugins/rustaceanvim.nix
T
2025-12-01 18:33:37 -05:00

27 lines
510 B
Nix

{ ... }:
{
programs.nixvim.plugins.rustaceanvim = {
enable = true;
settings = {
tools.enable_clippy = true;
server = {
default_settings = {
inlayHints = {
lifetimeElisionHints = {
enable = "always";
};
};
rust-analyzer = {
cargo = {
allFeatures = true;
};
check = {
command = "clippy";
};
};
};
};
};
};
}