diff --git a/modules/plugins/completion/blink-cmp/blink-cmp.nix b/modules/plugins/completion/blink-cmp/blink-cmp.nix index e56ac4cc..13cdb9f4 100644 --- a/modules/plugins/completion/blink-cmp/blink-cmp.nix +++ b/modules/plugins/completion/blink-cmp/blink-cmp.nix @@ -37,12 +37,6 @@ in { description = "Default list of sources to enable for completion."; }; - cmdline = mkOption { - type = nullOr (listOf str); - default = []; - description = "List of sources to enable for cmdline. Null means use default source list."; - }; - providers = mkOption { type = attrsOf providerType; default = {}; @@ -63,6 +57,14 @@ in { }; }; + cmdline = { + sources = mkOption { + type = nullOr (listOf str); + default = []; + description = "List of sources to enable for cmdline. Null means use default source list."; + }; + }; + completion = { documentation = { auto_show = mkBool true "Show documentation whenever an item is selected";