nix-community.nixvim/plugins/git/fugitive.nix

15 lines
296 B
Nix

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