mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 17:28:39 +02:00
20 lines
444 B
Nix
20 lines
444 B
Nix
{
|
|
lib,
|
|
helpers,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
helpers.neovim-plugin.mkNeovimPlugin config {
|
|
name = "my-plugin";
|
|
originalName = "my-plugin.nvim";
|
|
defaultPackage = pkgs.vimPlugins.my-plugin-nvim; # TODO replace
|
|
|
|
# Optionnally provide an example for the `settings` option.
|
|
settingsExample = {
|
|
foo = 42;
|
|
bar.__raw = "function() print('hello') end";
|
|
};
|
|
|
|
maintainers = [lib.maintainers.MyName]; # TODO replace with your name
|
|
}
|