nix-community.nixvim/plugins/git/fugitive.nix
2024-02-10 17:53:41 +01:00

15 lines
288 B
Nix

{
config,
helpers,
pkgs,
...
}:
helpers.vim-plugin.mkVimPlugin config {
name = "fugitive";
description = "vim-fugitive";
package = pkgs.vimPlugins.vim-fugitive;
extraPackages = [pkgs.git];
# In typical tpope fashion, this plugin has no config options
options = {};
}