surround: init plugin

This commit is contained in:
Pedro Alves 2022-01-09 23:11:48 +00:00
parent f8b70a30ea
commit 8da3fa430c
2 changed files with 12 additions and 0 deletions

View file

@ -43,6 +43,7 @@
./utils/nvim-tree.nix ./utils/nvim-tree.nix
./utils/specs.nix ./utils/specs.nix
./utils/startify.nix ./utils/startify.nix
./utils/surround.nix
./utils/undotree.nix ./utils/undotree.nix
]; ];
} }

View file

@ -0,0 +1,11 @@
{ lib, pkgs, ... }@attrs:
let
helpers = import ../helpers.nix { lib = lib; };
in with helpers; with lib;
mkPlugin attrs {
name = "surround";
description = "Enable surround.vim";
extraPlugins = [ pkgs.vimPlugins.surround ];
options = {};
}