Merge branch 'main' into oil-nvim

This commit is contained in:
raf 2025-04-01 13:43:06 +00:00 committed by GitHub
commit bac61f3c13
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 216 additions and 99 deletions

View file

@ -8,6 +8,12 @@
inherit (lib.nvim.binds) mkMappingOption;
inherit (lib.nvim.types) mkPluginSetupOption luaInline;
setupOptions = {
pickers.find_files.find_command = mkOption {
description = "cmd to use for finding files";
type = either (listOf str) luaInline;
default = ["${pkgs.fd}/bin/fd" "--type=file"];
};
defaults = {
vimgrep_arguments = mkOption {
description = ''
@ -27,11 +33,6 @@
"--no-ignore"
];
};
pickers.find_command = mkOption {
description = "cmd to use for finding files";
type = either (listOf str) luaInline;
default = ["${pkgs.fd}/bin/fd"];
};
prompt_prefix = mkOption {
description = "Shown in front of Telescope's prompt";
type = str;