mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
13 lines
349 B
Nix
13 lines
349 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 ];
|
|
extraPackages = [ pkgs.git ];
|
|
|
|
# In typical tpope fashin, this plugin has no config options
|
|
options = {};
|
|
}
|