nix-community.nixvim/plugins/utils/surround.nix

17 lines
277 B
Nix
Raw Normal View History

{
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;
2022-01-09 23:11:48 +00:00
options = {};
}