From 66b3c0a19fe3024d4bf1da563f7ca5a9aff58dec Mon Sep 17 00:00:00 2001 From: Pedro Cattori Date: Thu, 7 Mar 2024 06:11:26 -0500 Subject: [PATCH] feat(ui): dashboard files searches git files if in git repo (#2240) 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" },