mirror of
https://github.com/nix-community/nixvim.git
synced 2025-12-14 13:01:12 +01:00
15 lines
321 B
Nix
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
|
|
}
|