mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
14 lines
237 B
Nix
14 lines
237 B
Nix
{
|
|
config,
|
|
lib,
|
|
helpers,
|
|
pkgs,
|
|
...
|
|
}:
|
|
helpers.vim-plugin.mkVimPlugin config {
|
|
name = "surround";
|
|
originalName = "surround.vim";
|
|
defaultPackage = pkgs.vimPlugins.surround;
|
|
|
|
maintainers = [lib.maintainers.GaetanLepage];
|
|
}
|