2023-12-30 23:50:12 +01:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
helpers,
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
2024-02-12 00:01:55 +01:00
|
|
|
helpers.neovim-plugin.mkNeovimPlugin config {
|
|
|
|
name = "my-plugin";
|
|
|
|
originalName = "my-plugin.nvim";
|
|
|
|
defaultPackage = pkgs.vimPlugins.my-plugin-nvim; # TODO replace
|
2023-12-30 23:50:12 +01:00
|
|
|
|
2024-02-12 00:01:55 +01:00
|
|
|
# Optionnally provide an example for the `settings` option.
|
|
|
|
settingsExample = {
|
|
|
|
foo = 42;
|
|
|
|
bar.__raw = "function() print('hello') end";
|
2023-12-30 23:50:12 +01:00
|
|
|
};
|
2024-02-12 00:01:55 +01:00
|
|
|
|
|
|
|
maintainers = [lib.maintainers.MyName]; # TODO replace with your name
|
2023-12-30 23:50:12 +01:00
|
|
|
}
|