return { "nvim-telescope/telescope.nvim", branch = "0.1.x", dependencies = { "nvim-lua/plenary.nvim", { "nvim-telescope/telescope-fzf-native.nvim", build = "make" }, "nvim-tree/nvim-web-devicons", }, config = function() local telescope = require("telescope") local wk = require("which-key") telescope.load_extension("fzf") wk.register({ f = { name = "file", f = { "Telescope find_files", "Find Files in Current Working Directory" }, r = { "Telescope oldfiles", "Recent Files" }, s = { "Telescope grep_string", "Find String in File" }, g = { "Telescope git_files", "Find git files" }, }, }, { prefix = "" }) end, }