mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
16 lines
277 B
Nix
16 lines
277 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
} @ attrs: let
|
|
helpers = import ../helpers.nix {inherit lib;};
|
|
in
|
|
with helpers;
|
|
with lib;
|
|
mkPlugin attrs {
|
|
name = "surround";
|
|
description = "Enable surround.vim";
|
|
package = pkgs.vimPlugins.surround;
|
|
|
|
options = {};
|
|
}
|