nix-config/modules/nixvim/make.nix
Oliver Davies 22ed68a46e
All checks were successful
/ check (push) Successful in 54s
Configure makeprg for PHP, AsciiDoc and Go files
2025-08-30 22:15:46 +01:00

14 lines
227 B
Nix

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