mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
17 lines
347 B
Nix
17 lines
347 B
Nix
|
{
|
||
|
lib,
|
||
|
nixvimOptions,
|
||
|
}:
|
||
|
with lib; {
|
||
|
extraOptionsOptions = {
|
||
|
extraOptions = mkOption {
|
||
|
default = {};
|
||
|
type = with types; attrsOf anything;
|
||
|
description = ''
|
||
|
These attributes will be added to the table parameter for the setup function.
|
||
|
(Can override other attributes set by nixvim)
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|