mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
17 lines
336 B
Nix
17 lines
336 B
Nix
{
|
|
config,
|
|
lib,
|
|
helpers,
|
|
pkgs,
|
|
...
|
|
}:
|
|
helpers.vim-plugin.mkVimPlugin config {
|
|
name = "fugitive";
|
|
originalName = "vim-fugitive";
|
|
defaultPackage = pkgs.vimPlugins.vim-fugitive;
|
|
extraPackages = [pkgs.git];
|
|
|
|
maintainers = [lib.maintainers.GaetanLepage];
|
|
|
|
# In typical tpope fashion, this plugin has no config options
|
|
}
|