From 83ad616dd382d82e6f47827f5d60ec1e69f4b091 Mon Sep 17 00:00:00 2001 From: David Stark Date: Sat, 8 Jan 2022 00:52:11 +0000 Subject: [PATCH] when finding all files via Telescope follow symlinks --- lua/core/mappings.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/core/mappings.lua b/lua/core/mappings.lua index a8efc95..55a75b8 100644 --- a/lua/core/mappings.lua +++ b/lua/core/mappings.lua @@ -169,7 +169,7 @@ M.telescope = function() map("n", m.buffers, ":Telescope buffers ") map("n", m.find_files, ":Telescope find_files ") - map("n", m.find_hiddenfiles, ":Telescope find_files no_ignore=true hidden=true ") + map("n", m.find_hiddenfiles, ":Telescope follow=true find_files no_ignore=true hidden=true ") map("n", m.git_commits, ":Telescope git_commits ") map("n", m.git_status, ":Telescope git_status ") map("n", m.help_tags, ":Telescope help_tags ")