mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 01:04:34 +02:00
fugitive: init plugin
This commit is contained in:
parent
0d51b37154
commit
3b02d7ff06
3 changed files with 14 additions and 0 deletions
12
plugins/git/fugitive.nix
Normal file
12
plugins/git/fugitive.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ 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 ];
|
||||
|
||||
# In typical tpope fashin, this plugin has no config options
|
||||
options = {};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue