summaryrefslogtreecommitdiffstats
path: root/modules/plugins/completion/module.nix
blob: eb2a32f126c3c7b5be5eaf463bcda7e811b27acb (plain)
1
2
3
4
5
6
7
{lib, ...}: let
  inherit (lib.options) mkEnableOption;
in {
  options.vim.autocomplete = {
    enableSharedCmpSources = mkEnableOption "sources shared by blink.cmp and nvim-cmp";
  };
}