mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
18 lines
382 B
Nix
18 lines
382 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 fashin, this plugin has no config options
|
|
options = {};
|
|
}
|