mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
13 lines
190 B
Nix
13 lines
190 B
Nix
{
|
|
config,
|
|
helpers,
|
|
pkgs,
|
|
...
|
|
}:
|
|
helpers.vim-plugin.mkVimPlugin config {
|
|
name = "surround";
|
|
description = "surround.vim";
|
|
package = pkgs.vimPlugins.surround;
|
|
|
|
options = {};
|
|
}
|