mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
18 lines
394 B
Nix
18 lines
394 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
} @ attrs: let
|
|
helpers = import ../helpers.nix {inherit lib;};
|
|
in
|
|
with helpers.vim-plugin;
|
|
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 = {};
|
|
}
|