From f59c69201ea669a54e0d20c0aec9ccf2d26cb7a6 Mon Sep 17 00:00:00 2001 From: "RingOfStorms (Joshua Bell)" Date: Thu, 2 Jan 2025 11:53:56 -0600 Subject: [PATCH] find files include git ignore in search --- lua/plugins/telescope.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua index dbf5dfe..b147462 100644 --- a/lua/plugins/telescope.lua +++ b/lua/plugins/telescope.lua @@ -108,6 +108,9 @@ return { function() require("telescope.builtin").find_files({ hidden = true, + follow = true, + no_ignore = true, + no_ignore_parent = true, }) end, desc = "Find Files", @@ -128,6 +131,9 @@ return { function() require("telescope.builtin").live_grep({ hidden = true, + follow = true, + no_ignore = true, + no_ignore_parent = true, }) end, function()