2024-09-01 09:39:25 +01:00
|
|
|
{ lib, ... }:
|
2024-12-22 09:58:27 +00:00
|
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
2024-02-12 00:01:55 +01:00
|
|
|
name = "my-plugin";
|
2024-12-13 21:15:47 -06:00
|
|
|
moduleName = "my-plugin"; # TODO replace (or remove entirely if it is the same as `name`)
|
2024-12-13 08:27:14 -06:00
|
|
|
packPathName = "my-plugin.nvim"; # TODO replace (or remove entirely if it is the same as `name`)
|
2024-09-01 09:39:25 +01:00
|
|
|
package = "my-plugin-nvim"; # TODO replace
|
2023-12-30 23:50:12 +01:00
|
|
|
|
2025-05-07 23:26:17 -05:00
|
|
|
# TODO replace with your name
|
|
|
|
maintainers = [ lib.maintainers.MyName ];
|
2024-03-06 10:42:36 +01:00
|
|
|
|
2025-04-21 10:02:30 +01:00
|
|
|
# TODO provide an example for the `settings` option (or remove entirely if there is no useful example)
|
|
|
|
# NOTE you can use `lib.literalExpression` or `lib.literalMD` if needed
|
2024-02-12 00:01:55 +01:00
|
|
|
settingsExample = {
|
|
|
|
foo = 42;
|
|
|
|
bar.__raw = "function() print('hello') end";
|
2023-12-30 23:50:12 +01:00
|
|
|
};
|
|
|
|
}
|