nix-community.nixvim/plugins/git/fugitive.nix
2023-01-25 00:03:26 +00:00

13 lines
340 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";
package = pkgs.vimPlugins.vim-fugitive;
extraPackages = [ pkgs.git ];
# In typical tpope fashin, this plugin has no config options
options = {};
}