From c125078538b8776aa737ed27dbf823ae6799c7ca Mon Sep 17 00:00:00 2001 From: Pedro Cattori Date: Sat, 23 Dec 2023 14:47:53 -0600 Subject: [PATCH] feat(ui): dashboard files searches git files if in git repo just like `ff` keymap for telescope --- lua/lazyvim/plugins/ui.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazyvim/plugins/ui.lua b/lua/lazyvim/plugins/ui.lua index 50efb153..2a5e5e3e 100644 --- a/lua/lazyvim/plugins/ui.lua +++ b/lua/lazyvim/plugins/ui.lua @@ -373,7 +373,7 @@ return { header = vim.split(logo, "\n"), -- stylua: ignore center = { - { action = "Telescope find_files", desc = " Find file", icon = " ", key = "f" }, + { action = Util.telescope("files"), desc = " Find file", icon = " ", key = "f" }, { action = "ene | startinsert", desc = " New file", icon = " ", key = "n" }, { action = "Telescope oldfiles", desc = " Recent files", icon = " ", key = "r" }, { action = "Telescope live_grep", desc = " Find text", icon = " ", key = "g" },