mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 17:03:31 +02:00
plugins/telescope: mark internal options as such
This commit is contained in:
parent
2463b52250
commit
81d103b69b
1 changed files with 4 additions and 0 deletions
|
@ -56,12 +56,16 @@ in {
|
||||||
type = types.listOf types.str;
|
type = types.listOf types.str;
|
||||||
description = "A list of enabled extensions. Don't use this directly";
|
description = "A list of enabled extensions. Don't use this directly";
|
||||||
default = [];
|
default = [];
|
||||||
|
internal = true;
|
||||||
|
visible = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
extensionConfig = mkOption {
|
extensionConfig = mkOption {
|
||||||
type = types.attrsOf types.anything;
|
type = types.attrsOf types.anything;
|
||||||
description = "Configuration for the extensions. Don't use this directly";
|
description = "Configuration for the extensions. Don't use this directly";
|
||||||
default = {};
|
default = {};
|
||||||
|
internal = true;
|
||||||
|
visible = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
defaults = mkOption {
|
defaults = mkOption {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue