From 09b4d0c7a285d14c330bbd6ec8db0761ddc2bc64 Mon Sep 17 00:00:00 2001 From: ache Date: Sun, 21 Dec 2025 10:26:22 +0100 Subject: feat: add LSP references and fix keymap for recent files in telescope plugin --- lua/ache/plugins/telescope.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lua/ache/plugins/telescope.lua') diff --git a/lua/ache/plugins/telescope.lua b/lua/ache/plugins/telescope.lua index e165ef1..9462c16 100644 --- a/lua/ache/plugins/telescope.lua +++ b/lua/ache/plugins/telescope.lua @@ -72,7 +72,8 @@ return { telescope.load_extension("scope") vim.keymap.set("n", "ff", "Telescope find_files", { desc = "Fuzzy find files in cwd" }) - vim.keymap.set("n", "fr", "Telescope oldfiles", { desc = "Fuzzy find recet files" }) + vim.keymap.set("n", "fr", "Telescope lsp_references", { desc = "Fuzzy find references files" }) + vim.keymap.set("n", "fR", "Telescope oldfiles", { desc = "Fuzzy find recet files" }) vim.keymap.set("n", "fs", "Telescope live_grep", { desc = "Find string in cwd" }) vim.keymap.set( "n", -- cgit v1.3-2-g11bf