mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
8 lines
239 B
Nix
8 lines
239 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkVimPlugin {
|
|
name = "vim-surround";
|
|
package = "vim-surround";
|
|
description = "Delete/change/add parentheses/quotes/XML-tags/much more with ease.";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
}
|