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

12 lines
250 B
Nix
Raw Normal View History

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