nix-community.nixvim/lib/plugins/neovim.nix
2024-12-22 09:35:16 +00:00

19 lines
454 B
Nix

{
call,
lib,
}:
{
mkNeovimPlugin = call ./mk-neovim-plugin.nix { };
# TODO: DEPRECATED: use the `settings` option instead
extraOptionsOptions = {
extraOptions = lib.mkOption {
default = { };
type = with lib.types; attrsOf anything;
description = ''
These attributes will be added to the table parameter for the setup function.
Typically, it can override NixVim's default settings.
'';
};
};
}