nix-community.nixvim/plugins/git/fugitive.nix
2021-03-17 22:38:50 +00:00

12 lines
317 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 ];
# In typical tpope fashin, this plugin has no config options
options = {};
}