mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 17:28:39 +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.
14 lines
233 B
Nix
14 lines
233 B
Nix
{
|
|
lib,
|
|
helpers,
|
|
...
|
|
}:
|
|
helpers.vim-plugin.mkVimPlugin {
|
|
name = "endwise";
|
|
packPathName = "vim-endwise";
|
|
package = "vim-endwise";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
# This plugin has no config options
|
|
}
|