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