1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/plugins/by-name/rhubarb/default.nix
saygo-png c4b27080a6 treewide: infer packPathName menial work
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-09-27 23:49:59 +00:00

19 lines
484 B
Nix

{ lib, config, ... }:
lib.nixvim.plugins.mkVimPlugin {
name = "rhubarb";
package = "vim-rhubarb";
description = "Rhubarb is a GitHub extension for fugitive.vim.";
maintainers = [ lib.maintainers.santosh ];
dependencies = [ "git" ];
extraConfig = {
assertions = lib.nixvim.mkAssertions "plugins.rhubarb" [
{
assertion = config.plugins.fugitive.enable;
message = "You must enable `plugins.fugitive` when using `rhubarb`.";
}
];
};
}