mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 11:31:15 +00:00
27 lines
466 B
Nix
27 lines
466 B
Nix
|
{
|
||
|
pkgs,
|
||
|
lib,
|
||
|
config,
|
||
|
...
|
||
|
}:
|
||
|
with lib;
|
||
|
with builtins; let
|
||
|
cfg = config.vim.autocomplete;
|
||
|
in {
|
||
|
options.vim = {
|
||
|
autocomplete = {
|
||
|
enable = mkOption {
|
||
|
type = types.bool;
|
||
|
default = false;
|
||
|
description = "enable autocomplete";
|
||
|
};
|
||
|
|
||
|
type = mkOption {
|
||
|
type = types.enum ["nvim-cmp"];
|
||
|
default = "nvim-cmp";
|
||
|
description = "Set the autocomplete plugin. Options: [nvim-cmp]";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|