From e72c2f9c6b8a9bd4699e1e5258436236fed11ad8 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Mon, 12 Jun 2023 21:29:34 +0200 Subject: [PATCH] don't show ignore files by default in telescope --- 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 347f99b..56314d6 100644 --- a/lua/plugins/telescope.lua +++ b/lua/plugins/telescope.lua @@ -17,7 +17,7 @@ return { { 'f', function() - require('telescope').extensions.menufacture.find_files({ no_ignore = true, hidden = true }) + require('telescope').extensions.menufacture.find_files({ no_ignore = false, hidden = true }) end, desc = 'Find file', },