autocomplete: move shared code into common parent

This commit is contained in:
Ching Pei Yang 2025-01-11 21:46:49 +01:00
commit 9dccd4b4a8
No known key found for this signature in database
GPG key ID: B3841364253DC4C8
5 changed files with 140 additions and 106 deletions

View file

@ -0,0 +1,7 @@
{lib, ...}: let
inherit (lib.options) mkEnableOption;
in {
options.vim.autocomplete = {
enableSharedCmpSources = mkEnableOption "sources shared by blink.cmp and nvim-cmp";
};
}