mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
19 lines
454 B
Nix
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.
|
|
'';
|
|
};
|
|
};
|
|
}
|