1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-09 03:56:05 +01:00
nixvim/plugins/utils/surround.nix
2024-02-10 17:53:41 +01:00

13 lines
190 B
Nix

{
config,
helpers,
pkgs,
...
}:
helpers.vim-plugin.mkVimPlugin config {
name = "surround";
description = "surround.vim";
package = pkgs.vimPlugins.surround;
options = {};
}