nix-config/modules/home-manager/nvim/lsp/rust-tools.nix

21 lines
311 B
Nix
Raw Normal View History

2024-03-24 17:39:49 -05:00
{
config,
pkgs,
lib,
...
}: {
config =
lib.mkIf config.home.nvim.enable-lsp
2024-03-24 17:39:49 -05:00
{
programs.nixvim = {
plugins.rust-tools = {
enable = true;
2024-04-29 17:31:05 -05:00
server = {
checkOnSave = true;
check.command = "clippy";
};
2024-03-24 17:39:49 -05:00
};
};
};
}