mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-01-20 00:42:24 +00:00
8 lines
187 B
Nix
8 lines
187 B
Nix
|
{lib, ...}: let
|
||
|
inherit (lib.options) mkEnableOption;
|
||
|
in {
|
||
|
options.vim.autocomplete = {
|
||
|
enableSharedCmpSources = mkEnableOption "sources shared by blink.cmp and nvim-cmp";
|
||
|
};
|
||
|
}
|