mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
We used to only think of it as the plugin repo's name, but we have been needing to use it for the name of the plugin's packpath location.
12 lines
201 B
Nix
12 lines
201 B
Nix
{
|
|
lib,
|
|
helpers,
|
|
...
|
|
}:
|
|
helpers.vim-plugin.mkVimPlugin {
|
|
name = "vim-surround";
|
|
packPathName = "surround.vim";
|
|
package = "vim-surround";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
}
|