nix-config/modules/nixvim/make.nix

15 lines
227 B
Nix
Raw Normal View History

{
flake.modules.nixvim.custom =
{ pkgs, ... }:
{
extraPackages = with pkgs; [ gnumake ];
keymaps = [
{
action = "<cmd>make<CR>";
key = "<leader>r";
}
];
};
}