From de6583317ae4a3533ca5f4e99c29494ab336f84d Mon Sep 17 00:00:00 2001 From: kalmenn Date: Fri, 12 Jan 2024 12:21:32 +0100 Subject: [PATCH] telescope: make the find_files picker show .git and .gitignored files --- lua/plugins/telescope.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua index ce9d5a9..1024902 100644 --- a/lua/plugins/telescope.lua +++ b/lua/plugins/telescope.lua @@ -14,4 +14,11 @@ return { { "", "Telescope find_files", desc = "Fuzzy find files with Telescope" }, { "b", "Telescope buffers", desc = "Fuzzy find open buffers with Telescope" }, }, + opts = { + pickers = { + find_files = { + hidden = true, + }, + }, + }, }