1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-11 04:56:06 +01:00
nixvim/plugins/utils/surround.nix
2022-01-09 23:13:11 +00:00

11 lines
250 B
Nix

{ 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 = {};
}