From fcec9d54ec0af467a63c0010ff7dcaacdd538f3d Mon Sep 17 00:00:00 2001 From: Joshua Finch Date: Tue, 7 May 2024 15:13:51 -0500 Subject: [PATCH] fix: Corrected the overzealous exclusion of files with `git` or `node_modules` in their names and instead excluding files in those directories specifically --- nvim/lua/plugins/telescope.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvim/lua/plugins/telescope.lua b/nvim/lua/plugins/telescope.lua index 40c8dcf..ee9059f 100644 --- a/nvim/lua/plugins/telescope.lua +++ b/nvim/lua/plugins/telescope.lua @@ -100,8 +100,8 @@ return { no_ignore = false, hidden = true, file_ignore_patterns = { - '.git', - '.node_modules', + '.git/', + '.node_modules/', }, }) end,