From 29dc48f28a6433d10eef0ab19b41432511cacabf Mon Sep 17 00:00:00 2001 From: kalmenn Date: Mon, 15 Jan 2024 02:09:49 +0100 Subject: [PATCH] telescope: actually show all files --- lua/plugins/telescope.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua index 262ad9c..0b42baa 100644 --- a/lua/plugins/telescope.lua +++ b/lua/plugins/telescope.lua @@ -17,7 +17,7 @@ return { opts = { pickers = { find_files = { - find_command = { "rg", "--files", "--hidden", "--no-ignore-vcs", "--glob", "!**/.git/*" }, + find_command = { "rg", "--files", "--hidden", "--no-ignore-vcs" }, }, }, },