1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-09 20:16:07 +01:00
nixvim/plugins/utils/surround.nix
2024-05-05 22:00:40 +02:00

14 lines
239 B
Nix

{
config,
lib,
helpers,
pkgs,
...
}:
helpers.vim-plugin.mkVimPlugin config {
name = "surround";
originalName = "surround.vim";
defaultPackage = pkgs.vimPlugins.surround;
maintainers = [ lib.maintainers.GaetanLepage ];
}