1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-08 18:11:07 +01:00
nixvim/lib/plugins/neovim.nix
saygo-png 03a51dbf3d treewide: NixVim/nixvim -> Nixvim
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-12-04 23:22:21 +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.
'';
};
};
}