mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
12 lines
250 B
Nix
12 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 = {};
|
||
|
}
|