nix-community.nixvim/lib/plugins/neovim.nix

20 lines
454 B
Nix
Raw Normal View History

{
call,
lib,
}:
{
mkNeovimPlugin = call ./mk-neovim-plugin.nix { };
# TODO: DEPRECATED: use the `settings` option instead
extraOptionsOptions = {
2024-08-30 14:49:20 -05:00
extraOptions = lib.mkOption {
2024-05-05 19:39:35 +02:00
default = { };
2024-08-30 14:49:20 -05:00
type = with lib.types; attrsOf anything;
description = ''
These attributes will be added to the table parameter for the setup function.
2024-02-11 12:51:34 +00:00
Typically, it can override NixVim's default settings.
'';
};
};
}