nix-community.nixvim/plugins/git/fugitive.nix
Matilde Bravo 31b38e5649
Added missing git package in fugitive and neogit (#42)
* Added git to extra packages

* Added missing git package in fugitive and neogit
2022-10-03 19:17:31 +01:00

13 lines
349 B
Nix

{ lib, pkgs, ... }@attrs:
let
helpers = import ../helpers.nix { lib = lib; };
in with helpers; with lib;
mkPlugin attrs {
name = "fugitive";
description = "Enable vim-fugitive";
extraPlugins = [ pkgs.vimPlugins.vim-fugitive ];
extraPackages = [ pkgs.git ];
# In typical tpope fashin, this plugin has no config options
options = {};
}