1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00
nixvim/plugins/by-name/fugitive/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

23 lines
498 B
Nix

{
lib,
...
}:
lib.nixvim.plugins.mkVimPlugin {
name = "fugitive";
package = "vim-fugitive";
description = "Fugitive is the premier Vim plugin for Git management.";
maintainers = [ lib.maintainers.GaetanLepage ];
dependencies = [ "git" ];
imports = [
# TODO: added 2025-04-07, remove after 25.05
(lib.nixvim.mkRemovedPackageOptionModule {
plugin = "fugitive";
packageName = "git";
})
];
# In typical tpope fashion, this plugin has no config options
}