mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-01-19 16:32:24 +00:00
38 lines
865 B
Nix
38 lines
865 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.types) nullOr enum;
|
|
inherit (lib.options) mkEnableOption mkOption;
|
|
inherit (lib.nvim.types) mkPluginSetupOption borderType;
|
|
in {
|
|
options.vim.fzf-lua = {
|
|
enable = mkEnableOption "fzf-lua";
|
|
setupOpts = mkPluginSetupOption "fzf-lua" {
|
|
winopts.border = mkOption {
|
|
type = borderType;
|
|
default = config.vim.ui.borders.globalStyle;
|
|
description = "Border type for the fzf-lua picker window";
|
|
};
|
|
};
|
|
profile = mkOption {
|
|
type = enum [
|
|
"default"
|
|
"default-title"
|
|
"fzf-native"
|
|
"fzf-tmux"
|
|
"fzf-vim"
|
|
"max-perf"
|
|
"telescope"
|
|
"skim"
|
|
"borderless"
|
|
"borderless-full"
|
|
"border-fused"
|
|
];
|
|
default = "default";
|
|
description = "The configuration profile to use";
|
|
};
|
|
};
|
|
}
|