nix-community.nixvim/plugins/git/fugitive.nix
2024-01-14 22:35:27 +01:00

18 lines
383 B
Nix

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