1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-14 13:01:12 +01:00
nixvim/plugins/by-name/fugitive/default.nix
2025-12-07 23:34:03 +00:00

15 lines
321 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" ];
# In typical tpope fashion, this plugin has no config options
}