From fa7fb83315e379206ec62bd0bdd4891784cc48cf Mon Sep 17 00:00:00 2001 From: tebuevd <3241533+tebuevd@users.noreply.github.com> Date: Sun, 30 Mar 2025 20:04:48 -0700 Subject: [PATCH] Merge pull request #760 from tebuevd/fix-telescope-pickers-config telescope: correctly nest pickers under setupOpts --- docs/release-notes/rl-0.8.md | 8 ++++++++ modules/plugins/utility/telescope/telescope.nix | 11 ++++++----- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/docs/release-notes/rl-0.8.md b/docs/release-notes/rl-0.8.md index 5d0e1dbe..dc4a6fe8 100644 --- a/docs/release-notes/rl-0.8.md +++ b/docs/release-notes/rl-0.8.md @@ -283,3 +283,11 @@ [Sc3l3t0n](https://github.com/Sc3l3t0n): - Add F# support under `vim.languages.fsharp`. + +[tebuevd](https://github.com/tebuevd): + +- Fix `pickers` configuration for `telescope` by nesting it under `setupOpts` +- Fix `find_command` configuration for `telescope` by nesting it under + `setupOpts.pickers.find_files` +- Update default `telescope.setupOpts.pickers.find_files.find_command` to only + include files (and therefore exclude directories from results) diff --git a/modules/plugins/utility/telescope/telescope.nix b/modules/plugins/utility/telescope/telescope.nix index 0665eb11..beacc990 100644 --- a/modules/plugins/utility/telescope/telescope.nix +++ b/modules/plugins/utility/telescope/telescope.nix @@ -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;