mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-01-20 00:42:24 +00:00
19 lines
395 B
Nix
19 lines
395 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.options) mkEnableOption mkOption;
|
|
inherit (lib.nvim.types) mkPluginSetupOption borderType;
|
|
in {
|
|
options.vim.fzf-lua = {
|
|
enable = mkEnableOption "fzf-lua";
|
|
setupOpts = mkPluginSetupOption "mini.ai" {
|
|
winopts.border = mkOption {
|
|
type = borderType;
|
|
default = config.vim.ui.borders.globalStyle;
|
|
};
|
|
};
|
|
};
|
|
}
|